53 lines
413 B
Plaintext
53 lines
413 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
|
|
# Ruff
|
|
.ruff_cache/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Docker volumes
|
|
data/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# Alembic
|
|
alembic/versions/*.pyc
|