15 lines
326 B
Plaintext
15 lines
326 B
Plaintext
# Server Configuration
|
|
PORT=5000
|
|
NODE_ENV=production
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=change_this_to_a_secure_random_string_for_production
|
|
JWT_EXPIRE=24h
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGIN=https://ppt24.com
|
|
|
|
# Database Configuration
|
|
# We're using SQLite in production
|
|
DB_PATH=/var/www/ppt24.com/database/project_tracker.sqlite
|