-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 1005 Bytes
/
.env.example
File metadata and controls
23 lines (18 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Your bot's token, you can get it from https://discord.com/developers/applications
DISCORD_TOKEN="TOKEN"
# Path to the SQLite database file, 'file:' is required.
# `data/` is mounted as a docker volume so only the DB persists across rebuilds —
# migrations and schema stay in the image at `prisma/`.
DATABASE_URL="file:data/azalea.db"
# (Optional) Sentry DSN. If unset, error reporting is disabled and the
# bot logs `SENTRY_DSN is not set; error reporting is disabled.` at startup.
SENTRY_DSN="YOUR_SENTRY_DSN"
# (Optional) Rover API key, see https://rover.link/bot-developers for more information
ROVER_API_KEY="YOUR_ROVER_API_KEY"
# (Optional) VirusTotal API key, see https://www.virustotal.com for more information
VIRUSTOTAL_API_KEY="YOUR_VIRUS_TOTAL_API_KEY"
# (Optional) Health endpoint bind. Defaults to 127.0.0.1:7475. The sibling
# azalea-editor service polls /healthz here to verify a pm2 reload succeeded.
# Never expose this beyond loopback.
HEALTH_HOST="127.0.0.1"
HEALTH_PORT="7475"