63 lines
566 B
Text
63 lines
566 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.pytest_cache
|
|
htmlcov
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Project specific
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# Documentation (keep Dockerfile.dev for development builds)
|
|
DOCKER.md
|
|
docs/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|