12 lines
257 B
Bash
12 lines
257 B
Bash
# Server port
|
||
PORT=3000
|
||
|
||
# Log level: fatal | error | warn | info | debug | trace
|
||
LOG_LEVEL=info
|
||
|
||
# Node environment: production | development | test
|
||
NODE_ENV=development
|
||
|
||
# App version override (optional – falls back to VERSION file)
|
||
# APP_VERSION=1.0.0
|