17 lines
670 B
Plaintext
17 lines
670 B
Plaintext
|
|
# Example environment variables for Web_BLS_ProjectConsole
|
||
|
|
# Copy this file to `.env` and fill values before running locally
|
||
|
|
|
||
|
|
# Redis connection
|
||
|
|
REDIS_HOST=localhost # Redis host (default: localhost)
|
||
|
|
REDIS_PORT=6379 # Redis port (default: 6379)
|
||
|
|
REDIS_PASSWORD= # Redis password (leave empty if not set)
|
||
|
|
REDIS_DB=0 # Redis database number (default: 0)
|
||
|
|
REDIS_CONNECT_TIMEOUT_MS=2000 # Connection timeout in ms (default: 2000)
|
||
|
|
|
||
|
|
# Application
|
||
|
|
# Optional: port for backend server. Current default in code is 3001 but you can override it here.
|
||
|
|
PORT=3001
|
||
|
|
|
||
|
|
# Node environment (development|production)
|
||
|
|
NODE_ENV=development
|