56 lines
659 B
Plaintext
56 lines
659 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environment
|
|
venv/
|
|
.env/
|
|
.env.bak
|
|
.env.*
|
|
|
|
# Environment variable files
|
|
*.env
|
|
|
|
# Flask instance folder
|
|
instance/
|
|
|
|
# Pytest cache
|
|
.pytest_cache/
|
|
|
|
# VSCode settings
|
|
.vscode/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Logs and database
|
|
*.log
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Coverage reports
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
# Mypy
|
|
.mypy_cache/
|
|
|
|
# Flask-Migrate files (optional)
|
|
migrations/
|
|
|
|
# Celery beat schedule file
|
|
celerybeat-schedule
|
|
|
|
# Node.js (caso tenha frontend integrado)
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# Jupyter Notebook checkpoints (se usar notebooks)
|
|
.ipynb_checkpoints/
|