52 lines
467 B
Plaintext
52 lines
467 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
|
|
# Flask
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Data
|
|
data/sessions/*
|
|
data/reports/*
|
|
data/cache/*
|
|
!data/sessions/.gitkeep
|
|
!data/reports/.gitkeep
|
|
!data/cache/.gitkeep
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid |