-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy path.env.example
65 lines (50 loc) · 2.12 KB
/
.env.example
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
###
# An example Hibiki configuration file
# Do not share this file, and be careful with who has access to it.
# Unauthorized access could result in any form of abuse. You have been warned.
##
# The token to log into the Discord API with
# https://discord.com/developers/applications
DISCORD_TOKEN = "REPLACE_ME_WITH_YOUR_BOT_TOKEN"
# A Discord Guild ID to deploy guild commands to in dev mode and to log guild join/leave events
# https://discord.com/developers/docs/resources/guild#guild-object
DISCORD_TEST_GUILD_ID =
# The default locale to use
# Must match a folder in root/locales
DEFAULT_LOCALE = "en-US"
# Statuses to cycle through
# These must be delimited by a comma and a space
DISCORD_STATUSES = "h, guh, read if cute"
# A valid Sentry or Glitchtip DSN URL for uploading errors to
# https://docs.sentry.io/product/sentry-basics/dsn-explainer/
SENTRY_DSN =
# A fine-grained GitHub Personal Access token for the GitHub command
# https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens
API_GITHUB_PAT =
# An AbuseIPDB API key
# https://www.abuseipdb.com/account/api
API_ABUSEIPDB_KEY =
# An IPInfo.IO Bearer token
# https://ipinfo.io/developers#authentication
API_IPINFOIO_KEY =
# A Google Maps API key. Must have access to the Static Maps API. Remember to restrict your key!
# https://developers.google.com/maps/get-started
API_GOOGLEMAPS_KEY =
# The PostgreSQL user to authenticate to
# If you're using Docker with a default configuration, set this to "postgres"
POSTGRES_USER = "postgres"
# The PostgreSQL password to authenticate with
# If you're using Docker with a default configuration, set this to "postgres"
POSTGRES_PASSWORD = "postgres"
# The PostgreSQL host to connect to
# If you're using Docker, set this to "postgres" (or the DB container name)
POSTGRES_HOST = "127.0.0.1"
# The port to connect to PostgreSQL on
# By default, this port is 5432
POSTGRES_PORT = 5432
# The database to use and/or create
# We create a "hibiki" database by default
POSTGRES_DB = "hibiki"
# The database schema to use and/or create
# We use a "hibiki" schema by default
POSTGRES_SCHEMA = "hibiki"