22 lines
526 B
Bash
22 lines
526 B
Bash
# Environment
|
|
NODE_ENV=development # Change to 'production' for live environment
|
|
|
|
# Database Configuration - development localhost
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DB_NAME=tower_test
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
|
|
# Live Database Configuration (used only in production)
|
|
DB_USER_PROD=your_live_database_user
|
|
DB_PASSWORD_PROD=your_live_database_password
|
|
DB_NAME_PROD=your_database_name_live
|
|
DB_HOST_PROD=your_live_database_host
|
|
DB_PORT_PROD=5432
|
|
|
|
# JWT Secret
|
|
JWT_SECRET=your_jwt_secret
|
|
|
|
# Server Configuration
|
|
PORT=3000
|