18 lines
317 B
Bash
18 lines
317 B
Bash
# Server Configuration
|
|
PORT=5000
|
|
NODE_ENV=development
|
|
|
|
# Database Configuration
|
|
DB_USER=postgres
|
|
DB_HOST=localhost
|
|
DB_NAME=project_tracker
|
|
DB_PASSWORD=postgres
|
|
DB_PORT=5432
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your_jwt_secret_key_change_in_production
|
|
JWT_EXPIRE=24h
|
|
|
|
# CORS Configuration
|
|
CORS_ORIGIN=http://localhost:3000
|