3 changed files with 101 additions and 81 deletions
-
112.dockerignore
-
58Jenkinsfile
-
12runner.sh
@ -1,88 +1,86 @@ |
|||
# Git |
|||
# Version control |
|||
.git |
|||
.gitignore |
|||
.gitattributes |
|||
|
|||
# Python |
|||
# Python cache & bytecode |
|||
__pycache__ |
|||
*.py[cod] |
|||
*$py.class |
|||
*.class |
|||
*.so |
|||
.Python |
|||
*.egg-info |
|||
dist/ |
|||
build/ |
|||
dist |
|||
build |
|||
*.egg |
|||
|
|||
# Virtual environments |
|||
venv/ |
|||
env/ |
|||
ENV/ |
|||
# Virtual environments & node_modules |
|||
venv |
|||
env |
|||
ENV |
|||
env.bak |
|||
venv.bak |
|||
.venv |
|||
node_modules |
|||
|
|||
# IDEs |
|||
.vscode/ |
|||
.idea/ |
|||
# IDE & OS |
|||
.vscode |
|||
.idea |
|||
*.swp |
|||
*.swo |
|||
*~ |
|||
|
|||
# OS |
|||
.DS_Store |
|||
Thumbs.db |
|||
|
|||
# Docker |
|||
# Docker files |
|||
docker-compose*.yml |
|||
Dockerfile* |
|||
.dockerignore |
|||
|
|||
# Development files |
|||
# Environment files |
|||
.env |
|||
.env.dev |
|||
.env.development |
|||
.env.local |
|||
.env.test |
|||
|
|||
# Logs & database dumps |
|||
*.log |
|||
logs/ |
|||
logs |
|||
*.sqlite3 |
|||
*.sql |
|||
*.tar.gz |
|||
*.zip |
|||
*.bak |
|||
|
|||
# Documentation |
|||
*.md |
|||
docs/ |
|||
ADMIN_*.md |
|||
CONFIG_*.md |
|||
FINAL_*.md |
|||
FIX_*.md |
|||
MEDIA_*.md |
|||
OPTIMIZATION_*.md |
|||
PODCAST_*.md |
|||
QUICK_*.md |
|||
README*.md |
|||
VIDEO_*.md |
|||
BUGFIX_*.md |
|||
CHANGELOG_*.md |
|||
COLOR_*.md |
|||
|
|||
# Test files |
|||
# Testing & linting |
|||
.pytest_cache |
|||
.coverage |
|||
htmlcov |
|||
.tox |
|||
.nox |
|||
.mypy_cache |
|||
.dmypy.json |
|||
dmypy.json |
|||
test_*.py |
|||
test_*.sh |
|||
tests/ |
|||
.pytest_cache/ |
|||
tests |
|||
|
|||
# Volumes |
|||
volumes/ |
|||
staticfiles/ |
|||
media/ |
|||
|
|||
# Scripts |
|||
scripts/ |
|||
# seeds/ |
|||
|
|||
# Config |
|||
nginx*.conf |
|||
# Documentation & CI |
|||
*.md |
|||
docs |
|||
Jenkinsfile |
|||
.letta/ |
|||
.claude/ |
|||
.qodo/ |
|||
.zencoder/ |
|||
.jenkins |
|||
.letta |
|||
.claude |
|||
.qodo |
|||
.zencoder |
|||
|
|||
# Large volumes & temporary uploads |
|||
volumes |
|||
staticfiles |
|||
media |
|||
media_volume |
|||
recordings |
|||
data/*.xlsx |
|||
data/*.csv |
|||
|
|||
# Misc |
|||
*.xmind |
|||
*.html |
|||
sshs |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue