129 lines
2.1 KiB
Plaintext
129 lines
2.1 KiB
Plaintext
# ==============================================
|
|
# Python
|
|
# ==============================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.hypothesis/
|
|
*.mo
|
|
*.pot
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
instance/
|
|
.webassets-cache
|
|
.scrapy
|
|
docs/_build/
|
|
.pybuilder/
|
|
target/
|
|
|
|
# ==============================================
|
|
# Django
|
|
# ==============================================
|
|
*.log
|
|
staticfiles/
|
|
media/
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# Django Silk profiling
|
|
*.prof
|
|
profiles/
|
|
backend/profiles/
|
|
|
|
# ==============================================
|
|
# Node / NPM
|
|
# ==============================================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
.next/
|
|
out/
|
|
.vercel
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# ==============================================
|
|
# Environment variables
|
|
# ==============================================
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.*.local
|
|
|
|
# ==============================================
|
|
# IDE
|
|
# ==============================================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# ==============================================
|
|
# Docker
|
|
# ==============================================
|
|
docker-compose.override.yml
|
|
|
|
# ==============================================
|
|
# Logs
|
|
# ==============================================
|
|
logs/
|
|
*.log
|
|
|
|
# ==============================================
|
|
# Backups
|
|
# ==============================================
|
|
backups/
|
|
*.backup
|
|
*.dump
|
|
*.sql
|
|
|
|
# ==============================================
|
|
# Certificates
|
|
# ==============================================
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.csr
|
|
|
|
# ==============================================
|
|
# Temporary files
|
|
# ==============================================
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|
|
|