chore: remove .env from version control
Add **/.env to .gitignore to cover all subdirectories. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
318a1e1d8d
commit
29322cb3a5
2 changed files with 3 additions and 32 deletions
31
.env
31
.env
|
|
@ -1,31 +0,0 @@
|
|||
# PAH Backend Environment Variables
|
||||
|
||||
# Required - Sonauto API
|
||||
SONAUTO_API_KEY=sksonauto_xgKG42pnyiEIxXudchbvhSV1Jzc9wThipq0BSDU02ErwTjdv
|
||||
WEBHOOK_BASE_URL=https://valentinesong.oliver.digital
|
||||
|
||||
# Optional - Database (defaults shown)
|
||||
DATABASE_URL=postgresql://pah:pah_password@localhost:5432/pah
|
||||
|
||||
# Optional - Redis (defaults shown)
|
||||
REDIS_URL=redis://localhost:6379/0
|
||||
CELERY_BROKER_URL=redis://localhost:6379/0
|
||||
CELERY_RESULT_BACKEND=redis://localhost:6379/0
|
||||
|
||||
# Optional - Rate Limiting (defaults shown)
|
||||
MAX_CONCURRENT_REQUESTS=10
|
||||
MAX_RETRIES=3
|
||||
FORM_SUBMIT_RETRY=10
|
||||
|
||||
# Optional - Timeouts (defaults shown)
|
||||
WEBHOOK_TIMEOUT_MINUTES=10
|
||||
API_REQUEST_TIMEOUT_SECONDS=30
|
||||
|
||||
# Optional - Storage (defaults shown)
|
||||
STORAGE_BASE=../storage
|
||||
|
||||
# Optional - Data Retention (defaults shown)
|
||||
FILE_RETENTION_DAYS=30
|
||||
|
||||
# Optional - CORS Origins (comma-separated, defaults shown)
|
||||
# CORS_ORIGINS=http://localhost,http://localhost:8000
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
|||
**/*/.DS_Store
|
||||
.DS_Store.env
|
||||
.DS_Store
|
||||
.env
|
||||
**/.env
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue