64 lines
No EOL
546 B
Text
64 lines
No EOL
546 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$pyclass$
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# Flask
|
|
flask.db
|
|
instance/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
*.sqlite
|
|
|
|
# Alembic migrations
|
|
migrations/versions/*.py_bak
|
|
migrations/versions/#
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
config_local.py
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Coverage
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
desktop.ini |