You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
683 B
30 lines
683 B
PORT=3001
|
|
MONGO_URI=mongodb://adminUser:adminPassword@textbee-db:27017/textbee?authSource=admin
|
|
|
|
# to setup initial password
|
|
MONGO_ROOT_USER=adminUser
|
|
MONGO_ROOT_PASS=adminPassword
|
|
|
|
JWT_SECRET=secret # change this to a secure random string
|
|
JWT_EXPIRATION=60d
|
|
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
#Update from Firebase service account json file
|
|
FIREBASE_PROJECT_ID=
|
|
FIREBASE_PRIVATE_KEY_ID=
|
|
FIREBASE_PRIVATE_KEY=
|
|
FIREBASE_CLIENT_EMAIL=
|
|
FIREBASE_CLIENT_ID=
|
|
FIREBASE_CLIENT_C509_CERT_URL=
|
|
|
|
MAIL_HOST=
|
|
MAIL_PORT=
|
|
MAIL_USER=
|
|
MAIL_PASS=
|
|
MAIL_FROM=
|
|
MAIL_REPLY_TO=
|
|
|
|
# SMS Queue Configuration
|
|
USE_SMS_QUEUE=false
|
|
REDIS_URL=redis://localhost:6379 # if queue is enabled, redis url is required
|