22 lines
507 B
Bash
22 lines
507 B
Bash
|
|
# Database Configuration
|
|
DB_USER=root
|
|
DB_PASS=peekaping
|
|
DB_NAME=peekaping
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_TYPE=postgres
|
|
|
|
# Server Configuration
|
|
SERVER_PORT=8034
|
|
CLIENT_URL="http://localhost:8383"
|
|
|
|
# Application Settings
|
|
MODE=prod
|
|
TZ="America/Chicago"
|
|
|
|
# JWT settings are automatically managed in the database
|
|
# Default settings are initialized on first startup:
|
|
# - Access token expiration: 15 minutes
|
|
# - Refresh token expiration: 720 hours (30 days)
|
|
# - Secret keys are automatically generated securely
|