monkeytype/docker/example.env
Christian Fehmer 5aec2c9a17
fix(docker): use frontend url for firebase admin (@fehmer) (#6730)
fixes #6728

---------

Co-authored-by: Jack <jack@monkeytype.com>
2025-07-14 15:30:34 +02:00

45 lines
1.2 KiB
Bash

#url of the frontend, this must be accessible by your clients browser
MONKEYTYPE_FRONTENDURL=http://myserver:8080
#url of the backend server, this must be accessible by your clients browser
MONKEYTYPE_BACKENDURL=http://myserver:5005
# firebase config
# uncomment below config if you need user accounts
#FIREBASE_APIKEY=
#FIREBASE_AUTHDOMAIN=
#FIREBASE_PROJECTID=
#FIREBASE_STORAGEBUCKET=
#FIREBASE_MESSAGINGSENDERID=
#FIREBASE_APPID=
# email server config
# uncomment below if you want to send emails for e.g. password reset
#EMAIL_HOST=mail.myserver
#EMAIL_USER=mailuser
#EMAIL_PASS=mailpass
#EMAIL_PORT=465
#EMAIL_FROM="Support <noreply@myserver>"
# google recaptcha
# uncomment below config if you need user accounts
# you can use these defaults if you host this privately
#RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
#RECAPTCHA_SECRET=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
RECAPTCHA_SITE_KEY=
RECAPTCHA_SECRET=
# use alternative ports
# port of the frontend http server
# HTTP_PORT=8080
# port of the backend api server
# BACKEND_PORT=5005
# port of the redis server, not exposed by default
# REDIS_PORT=6379
# port of the mongodb server, not exposed by default
# MONGO_PORT=27017