# ╔═══════════════════════════════════════════════════════════════════════════╗ # ║ ║ # ║ ███████╗ ██████╗██╗ ██╗ ██████╗ ███╗ ██╗ ║ # ║ ██╔════╝██╔════╝██║ ██║██╔═══██╗████╗ ██║ ║ # ║ ███████╗██║ ███████║██║ ██║██╔██╗ ██║ ║ # ║ ╚════██║██║ ██╔══██║██║ ██║██║╚██╗██║ ║ # ║ ███████║╚██████╗██║ ██║╚██████╔╝██║ ╚████║ ║ # ║ ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ║ # ║ ║ # ╚═══════════════════════════════════════════════════════════════════════════╝ # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Python │ # └───────────────────────────────────────────────────────────────────────────┘ # Bytecode & compiled *.py[cod] *$py.class *.so # Caches __pycache__/ .pytest_cache/ .hypothesis/ .mypy_cache/ .pyre/ .pytype/ .dmypy.json dmypy.json cython_debug/ # Virtual environments .Python .venv/ venv/ env/ ENV/ env.bak/ ENV.bak/ venv.bak/ __pypackages__/ .python-version # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Django │ # └───────────────────────────────────────────────────────────────────────────┘ local_settings.py db.sqlite3 db.sqlite3-journal instance/ backups/ # Static & media (collected) static/ media/ # Allow checked-in app static files !engine/core/static/ !engine/payments/static/ !engine/vibes_auth/static/ !engine/blog/static/ # Celery celerybeat-schedule celerybeat.pid # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Testing & Coverage │ # └───────────────────────────────────────────────────────────────────────────┘ htmlcov/ .coverage .coverage.* coverage.xml coverage.* *.cover *.py,cover nosetests.xml test.json .tox/ .nox/ # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Logs │ # └───────────────────────────────────────────────────────────────────────────┘ logs/ *.log debug.log errors.log tmp/ # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Build & Distribution │ # └───────────────────────────────────────────────────────────────────────────┘ build/ dist/ dist-ssr/ sdist/ wheels/ *.egg *.egg-info/ *.manifest *.spec .installed.cfg MANIFEST share/python-wheels/ pip-log.txt pip-delete-this-directory.txt # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Node.js & Frontend │ # └───────────────────────────────────────────────────────────────────────────┘ node_modules/ .nuxt/ .next/ next-env.d.ts *.tsbuildinfo .webassets-cache/ site/ # Debug logs npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* lerna-debug.log* # Cypress cypress/videos/ cypress/screenshots/ # ┌───────────────────────────────────────────────────────────────────────────┐ # │ IDEs & Editors │ # └───────────────────────────────────────────────────────────────────────────┘ # VS Code .vscode/ !.vscode/extensions.json # JetBrains .idea/ !.idea/icon.svg !.idea/externalDependencies.xml !.idea/schon.iml # Visual Studio *.suo *.ntvs* *.njsproj *.sln *.sw? # Spyder & Rope .spyderproject .spyproject .ropeproject # ┌───────────────────────────────────────────────────────────────────────────┐ # │ OS & System │ # └───────────────────────────────────────────────────────────────────────────┘ .DS_Store desktop.ini *.iml # ┌───────────────────────────────────────────────────────────────────────────┐ # │ Project-specific │ # └───────────────────────────────────────────────────────────────────────────┘ # Environment .env # Development test.ipynb .scrapy .cover .pybuilder/ engine/core/vendors/docs/* # Production .initialized queries/ nginx.conf # AI assistants .claude/