14 lines
480 B
Plaintext
14 lines
480 B
Plaintext
# PostgreSQL Connection URL
|
|
# Format: postgresql://<user>:<password>@<host>:<port>/<database>
|
|
DATABASE_URL=postgresql://postgres:mysecretpassword@localhost:5432/tt_tournament
|
|
|
|
# JWT Secret Key (change this to a long, random, secure string)
|
|
JWT_SECRET=YOUR_VERY_SECRET_RANDOM_KEY_HERE
|
|
|
|
# Port the application will run on
|
|
PORT=3000
|
|
|
|
# Optional: Database Backup Configuration
|
|
# BACKUP_PATH=/path/to/your/backup/directory
|
|
# BACKUP_INTERVAL_MINUTES=1440 # e.g., 1440 for daily backups
|