37 lines
709 B
Bash
37 lines
709 B
Bash
# Enviroment variables that will be available for every application
|
|
|
|
# General version of the system
|
|
VERSION=0.1
|
|
|
|
# Optional prefix for logging
|
|
LOG_PREFIX=[Pagerino]
|
|
|
|
# Main app container name
|
|
SERVER_NAME=pagerino-app
|
|
SERVER_API_PORT=50222
|
|
|
|
# General preferred connection timeout
|
|
TIMEOUT=3s
|
|
|
|
WS_NAME=send
|
|
WS_TIMEOUT=3s
|
|
WS_SIZE=512
|
|
CROSS_ORIGINS= # CSV format for all URLs that can communicate with web app
|
|
|
|
# === Basic
|
|
APP_NAME=Pagerino
|
|
LOG_PREFIX=[Pagerino Web]
|
|
|
|
DEV_MODE=true
|
|
|
|
# === Host settings
|
|
WEB_PORT=8222
|
|
|
|
# === UX configs
|
|
HOME_NAME=dashboard # Leave empty for default "/"
|
|
SESSION_DURATION=12h # one authorization duration
|
|
|
|
|
|
# === Secets & keys
|
|
JWT_SECRET=7jkNtpI4mM2QSW23ZILh2z6v0+gvKadNXi8I8jThiHU=
|