-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env.example
More file actions
33 lines (30 loc) · 1.32 KB
/
Copy path.env.example
File metadata and controls
33 lines (30 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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=
# The host for the icecast server.
ICECAST_HOST=127.0.0.1:8000
# The username for the icecast admin user.
ICECAST_ADMIN_USER=
# The password for the icecast admin user.
ICECAST_ADMIN_PASSWORD=
# The API key for OneSignal.
ONE_SIGNAL_API_KEY=
# The app ID for OneSignal.
PUBLIC_ONE_SIGNAL_APP_ID=
# If set to `true`, the server will not send push notifications, and will instead forward all attempts to send push notifications to stdout. This is useful for quick dev runs.
NO_PUSH_NOTIFICATIONS=