-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
45 lines (38 loc) · 1.98 KB
/
Copy path.env.example
File metadata and controls
45 lines (38 loc) · 1.98 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
34
35
36
37
38
39
40
41
42
43
44
45
# Discord bot token
# https://discord.com/developers/applications
BOT_TOKEN=
# Time zone that you are in. This is used when typing "Friday 22:00" and more.
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# You want to use the TZ database name.
# For example, Europe/Stockholm, America/New_York, Asia/Tokyo.
TIMEZONE=
# Optional: Change sqlite database location. Default is db.sqlite3 in the root folder.
# SQLITE_LOCATION=/jobs.sqlite
# Note the double backslashes and the first slash.
# SQLITE_LOCATION=/C:\\Users\\Jocke\\Desktop\\db.sqlite3
# On Linux you will need to use double slashes before the path to get the absolute path.
# SQLITE_LOCATION=//home/lovinator/foo.db
# Additional directory to store data in.
# Note: You will still need to set the SQLITE_LOCATION to a valid path.
# This is used to store markdown files with the reminder data.
# The directory will be created if it does not exist.
# Example: DATA_DIR=C:/Code/discord-reminder-bot/data
# Example: DATA_DIR=/home/lovinator/data
# Example: DATA_DIR=./data
DATA_DIR=./data
# How many seconds a missed reminder can be misfired and still be sent.
# Default is 3600 seconds (1 hour).
# If a bot is offline for 5 minutes and comes back online, reminders that were missed during those 5 minutes will still be sent.
# Set to 0 to disable the grace period entirely — any missed reminder (even by a millisecond) will be discarded immediately.
# MISFIRE_GRACE_TIME=3600
# Log level, CRITICAL, ERROR, WARNING, INFO, DEBUG.
LOG_LEVEL=INFO
# Webhook that discord-reminder-bot will send errors and information about missed reminders.
# https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks
# Right click channel in Discord -> Integrations -> Webhooks -> Create Webhook.
WEBHOOK_URL=
# Custom Sentry DSN for error tracking.
# Uncomment to disable sending crash reports to the developer.
# Errors will be fixed immediately if you have this enabled.
# https://docs.sentry.io/concepts/key-terms/dsn-explainer/
# SENTRY_DSN=