14 lines
379 B
Bash
14 lines
379 B
Bash
# Host ports (change these if they collide on your single server)
|
|
BACKEND_HOST_PORT=8080
|
|
# MySQL is internal-only (not published to the host)
|
|
|
|
# MySQL
|
|
# Quote if the password contains special chars like ; # $
|
|
MYSQL_ROOT_PASSWORD="password"
|
|
MYSQL_DATABASE=qms
|
|
|
|
# App
|
|
JWT_SECRET_KEY=change-me-to-a-long-random-secret
|
|
GOOGLE_CLIENT_ID=dummy-google-client-id
|
|
NOTIFICATIONS_MOCK=true
|