chore: track .env.production.example in git

This commit is contained in:
2026-02-22 20:26:00 -06:00
parent 351393dc16
commit 22941edc53
2 changed files with 19 additions and 0 deletions

18
.env.production.example Normal file
View File

@@ -0,0 +1,18 @@
# =============================================================================
# PulseScore Production Environment Configuration
# =============================================================================
# Copy this file to .env and fill in actual values before deploying.
# PostgreSQL
POSTGRES_USER=pulsescore
POSTGRES_PASSWORD=CHANGEME_use_a_strong_password
POSTGRES_DB=pulsescore
# Server
PORT=8080
# CORS — comma-separated list of allowed origins
CORS_ALLOWED_ORIGINS=https://yourdomain.com
# Rate limiting — requests per minute per IP
RATE_LIMIT_RPM=100

1
.gitignore vendored
View File

@@ -69,6 +69,7 @@ web_modules/
.env
.env.*
!.env.example
!.env.production.example
# parcel-bundler cache (https://parceljs.org/)
.cache