| 1234567891011121314151617181920 |
- # Database Configuration
- DB_TYPE=postgres
- DB_HOST=localhost
- DB_PORT=5432
- DB_NAME=financial_data
- DB_USER=postgres
- DB_PASSWORD=your_secure_password_here
- # Server Configuration
- PORT=3001
- NODE_ENV=development
- # JWT Configuration (if needed for authentication)
- JWT_SECRET=your_secure_jwt_secret_key_here
- # CORS Configuration
- CORS_ORIGIN=*
- # Logging
- LOG_LEVEL=debug
|