170 lines
No EOL
5.3 KiB
Text
170 lines
No EOL
5.3 KiB
Text
# ──────────────────────────────────────────────────────────────────────────
|
|
# Python bytecode, caches, and compiled artifacts
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Byte-compiled / optimized / DLL files
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Cache directories
|
|
__pycache__/
|
|
.pytest_cache/
|
|
.hypothesis/
|
|
.pyre/
|
|
.pytype/
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
cython_debug/
|
|
|
|
# Python environments
|
|
.Python
|
|
env/
|
|
env.bak/
|
|
ENV.bak/
|
|
venv/
|
|
venv.bak/
|
|
ENV/
|
|
.venv/
|
|
__pypackages__/
|
|
|
|
# Local Django settings and database
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# Django backups and metadata
|
|
instance/
|
|
db_backups/
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Logs and reports
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
logs/
|
|
*.log
|
|
debug.log
|
|
errors.log
|
|
test.json
|
|
coverage.xml
|
|
coverage.*
|
|
*.cover
|
|
*.py,cover
|
|
nosetests.xml
|
|
|
|
# Coverage / test reports
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
|
|
# CI / tox / nox
|
|
.tox/
|
|
.nox/
|
|
.scrapy
|
|
.cover
|
|
.pybuilder/
|
|
|
|
# Storefronts
|
|
nuxt/
|
|
next/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Packaging and distribution
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
build/
|
|
dist/
|
|
dist-ssr/
|
|
*.egg
|
|
*.egg-info/
|
|
.installed.cfg
|
|
MANIFEST
|
|
*.manifest
|
|
*.spec
|
|
sdist/
|
|
wheels/
|
|
share/python-wheels/
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
desktop.ini
|
|
|
|
# Node build artifacts
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
site/
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Static, media, and uploads
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
static/
|
|
media/
|
|
|
|
# Allow checked-in static from apps
|
|
!core/static/
|
|
!payments/static/
|
|
!vibes_auth/static/
|
|
!blog/static/
|
|
|
|
# Webassets
|
|
.webassets-cache/
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Docker & service data
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Local volume mounts
|
|
services_data/
|
|
services_data/postgres/
|
|
services_data/redis/
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Node dependencies
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
node_modules/
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# Cypress test artifacts
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
cypress/videos/
|
|
cypress/screenshots/
|
|
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# IDEs and editors
|
|
# ──────────────────────────────────────────────────────────────────────────
|
|
# VSCode
|
|
.vscode/
|
|
!.vscode/extensions.json
|
|
|
|
# JetBrains
|
|
.idea/
|
|
!.idea/icon.svg
|
|
!.idea/externalDependencies.xml
|
|
!.idea/evibes.iml
|
|
|
|
# Microsoft
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Spyder / Rope
|
|
.spyderproject
|
|
.spyproject
|
|
.ropeproject
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Environment file
|
|
.env
|
|
|
|
# Development stuff
|
|
test.ipynb |