2021-04-02 09:24:00 +00:00
|
|
|
## Timezones
|
|
|
|
GoScrobble runs as UTC and connects to MySQL as UTC. All timezone handling is done in the frontend.
|
|
|
|
|
2021-03-27 21:39:08 +00:00
|
|
|
## FRONTEND VARS
|
2021-03-27 21:57:23 +00:00
|
|
|
These are stored in `web/.env.production` and `web/.env.development`
|
|
|
|
|
2021-03-27 21:39:08 +00:00
|
|
|
REACT_APP_API_URL=https://goscrobble.com // Sets API URL
|
|
|
|
|
|
|
|
|
|
|
|
## BACKEND VARS
|
|
|
|
MYSQL_HOST= // MySQL Server
|
|
|
|
MYSQL_USER= // MySQL User
|
|
|
|
MYSQL_PASS= // MySQL Password
|
|
|
|
MYSQL_DB= // MySQL Database
|
|
|
|
|
2021-03-29 07:56:34 +00:00
|
|
|
REDIS_HOST=127.0.0.1 // Redis host
|
|
|
|
REDIS_PORT= // Redis port (defaults 6379)
|
2021-03-27 21:39:08 +00:00
|
|
|
REDIS_DB=4 // Redis DB
|
|
|
|
REDIS_PREFIX="gs:" // Redis key prefix
|
|
|
|
REDIS_AUTH="" // Redis password
|
|
|
|
|
|
|
|
JWT_SECRET= // 32+ Char JWT secret
|
|
|
|
JWT_EXPIRY=86400 // JWT expiry
|
|
|
|
|
|
|
|
REVERSE_PROXIES=127.0.0.1 // Comma separated list of servers to ignore for IP logs
|
2021-03-27 21:57:23 +00:00
|
|
|
PORT=42069 // Server port
|
2021-04-01 12:56:08 +00:00
|
|
|
|
|
|
|
SENDGRID_API_KEY= // API KEY
|
|
|
|
MAIL_FROM_ADDRESS= // FROM email
|
|
|
|
MAIL_FROM_NAME= // FROM name
|
|
|
|
|
|
|
|
GOSCROBBLE_DOMAIN="" // Full domain for email links (https://goscrobble.com))
|