-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env.example
18 lines (18 loc) · 851 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# The name of the database in mariadb
DATABASE_NAME=
# The username for mariadb
DATABASE_USER=
# The password for mariadb
DATABASE_PASSWORD=
# The API key for mailgun. Used to send emails
MAILGUN_API_KEY=
# The domain for mailgun.
MAILGUN_DOMAIN=
# The JWT secret. This is used to sign the JWT tokens.
JWT_SECRET=
# The backup directory.
BACKUP_DIR=
# The size limit for the body of the request. This is used to prevent large requests from being sent to the server. Please note that this does not directly govern the maximum size for audio uploads. For that, you will need to change it from the code.
BODY_SIZE_LIMIT=55M
# If set to `true`, the server will not send emails, and will instead forward all attempts to send email to stdout. This is useful for quick dev runs, as the `MAILGUN_API_KEY` and `MAILGUN_DOMAIN` will not be required.
NO_EMAIL=