# ========================================== # Python / Poetry # ========================================== # Virtual environments venv/ .venv/ env/ ENV/ # Python cache __pycache__/ *.py[cod] *$py.class *.so .Python # Distribution / packaging build/ dist/ *.egg-info/ .eggs/ # PyInstaller *.manifest *.spec # Unit test / coverage htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # ========================================== # Environment Variables # ========================================== .env .env.local .env.*.local .env.production .env.staging # ========================================== # IDEs and Editors # ========================================== # VS Code .vscode/ !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json *.code-workspace # PyCharm / IntelliJ .idea/ *.iml *.iws *.ipr # Sublime Text *.sublime-project *.sublime-workspace # Emacs *~ \#*\# # Vim *.swp *.swo # macOS .DS_Store .AppleDouble .LSOverride # ========================================== # Logs and Databases # ========================================== *.log *.sql *.sqlite *.sqlite3 *.db # ========================================== # Application Specific # ========================================== # Local development files local_settings.py # Alembic migrations (if using) # Uncomment if you want to ignore migrations # alembic/versions/* # !alembic/versions/.gitkeep # Temporary files tmp/ temp/ *.tmp