15 lines
322 B
Plaintext
15 lines
322 B
Plaintext
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your_password_here
|
|
DB_NAME=geeklife
|
|
DB_SSLMODE=disable
|
|
|
|
# Authentication Configuration
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
|
SESSION_DURATION=24
|
|
|
|
# Application Configuration
|
|
ENVIRONMENT=development
|
|
LOG_LEVEL=info |