47 lines
441 B
Text
47 lines
441 B
Text
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.venv/
|
|
venv/
|
|
.eggs/
|
|
|
|
# Environment
|
|
.env
|
|
!.env.example
|
|
|
|
# Flask / SQLAlchemy
|
|
instance/
|
|
|
|
# Migrations (keep the folder, ignore nothing inside)
|
|
|
|
# pytest
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.xml
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node / Frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/.env
|
|
frontend/.env.local
|
|
frontend/coverage/
|
|
|
|
# Logs
|
|
*.log
|