mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-21 16:11:56 +00:00
Daniel Mason
3698c0b436
- Add docker-compose file for local dev - Implemented top listeners for artist/album endpoints to match track - Add recent endpoint
29 lines
461 B
Plaintext
29 lines
461 B
Plaintext
MYSQL_HOST=mysql
|
|
MYSQL_USER=root
|
|
MYSQL_PASS=supersecretdatabasepassword1
|
|
MYSQL_DB=goscrobble
|
|
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_DB=4
|
|
REDIS_PREFIX="gs:"
|
|
REDIS_AUTH=""
|
|
|
|
JWT_SECRET=abcdefg
|
|
JWT_EXPIRY=604800
|
|
REFRESH_EXPIRY=604800
|
|
|
|
REVERSE_PROXIES=
|
|
PORT=42069
|
|
|
|
SENDGRID_API_KEY=
|
|
MAIL_FROM_ADDRESS=
|
|
MAIL_FROM_NAME=
|
|
|
|
DEV_MODE=true
|
|
|
|
GOSCROBBLE_DOMAIN="http://127.0.0.1"
|
|
|
|
DATA_DIRECTORY="/app/data"
|
|
FRONTEND_DIRECTORY="/app"
|
|
API_DOCS_DIRECTORY="/app/docs/api/build" |