Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants. Co-authored-by: Cursor <cursoragent@cursor.com>
49 lines
592 B
Plaintext
49 lines
592 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
*.egg
|
|
|
|
# Environment
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
|
|
# Databases / local
|
|
*.sqlite3
|
|
*.db
|
|
test.db
|
|
|
|
# Node / Frontend
|
|
node_modules/
|
|
.next/
|
|
dist/
|
|
frontend/.next/
|
|
frontend/node_modules/
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Deploy temp artifacts
|
|
scripts/_deploy_bundle.tar.gz
|
|
scripts/_tmp_*
|
|
scripts/_check_*
|
|
scripts/_fix_*
|
|
scripts/_debug_*
|
|
scripts/_vols.py
|
|
scripts/_restart_*
|
|
scripts/_reset_*
|
|
scripts/_verify*
|
|
scripts/_finalize_*
|