1 changed files with 88 additions and 0 deletions
@ -0,0 +1,88 @@ |
|||
# Git |
|||
.git |
|||
.gitignore |
|||
.gitattributes |
|||
|
|||
# Python |
|||
__pycache__ |
|||
*.py[cod] |
|||
*$py.class |
|||
*.so |
|||
.Python |
|||
*.egg-info |
|||
dist/ |
|||
build/ |
|||
*.egg |
|||
|
|||
# Virtual environments |
|||
venv/ |
|||
env/ |
|||
ENV/ |
|||
.venv |
|||
|
|||
# IDEs |
|||
.vscode/ |
|||
.idea/ |
|||
*.swp |
|||
*.swo |
|||
*~ |
|||
|
|||
# OS |
|||
.DS_Store |
|||
Thumbs.db |
|||
|
|||
# Docker |
|||
docker-compose*.yml |
|||
Dockerfile* |
|||
.dockerignore |
|||
|
|||
# Development files |
|||
.env.dev |
|||
*.log |
|||
logs/ |
|||
*.sqlite3 |
|||
|
|||
# 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 |
|||
test_*.py |
|||
test_*.sh |
|||
tests/ |
|||
.pytest_cache/ |
|||
|
|||
# Volumes |
|||
volumes/ |
|||
staticfiles/ |
|||
media/ |
|||
|
|||
# Scripts |
|||
scripts/ |
|||
seeds/ |
|||
|
|||
# Config |
|||
nginx*.conf |
|||
Jenkinsfile |
|||
.letta/ |
|||
.claude/ |
|||
.qodo/ |
|||
.zencoder/ |
|||
|
|||
# Misc |
|||
*.xmind |
|||
*.html |
|||
sshs |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue