-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env.example
51 lines (42 loc) · 1.69 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
# The name of the domain to use
# (this must exactly match what you have specified in "domain" variable of the client's "globals.js" file, or else the login cookie will not work)
DOMAIN="localhost"
# A random 128 character alphanumeric string
# (used to encrypt/decrypt the cookies)
SESSION_SECRET="change_this_string"
# The MySQL database configuration
# If "DB_HOST" is blank, it will default to localhost
# If "DB_PORT" is blank, it will default to 3306 (the default MySQL port)
DB_HOST=
DB_PORT=
DB_USER="isaacuser"
DB_PASS="1234567890"
DB_NAME="isaac"
# HTTPS (TLS) Configuration
# (if blank, it will default to HTTP instead of using HTTPS)
TLS_CERT_FILE=
TLS_KEY_FILE=
# Your Steam web API key
# https://steamcommunity.com/dev/apikey
# (this is required for users to be able to login to the WebSocket server)
STEAM_WEB_API_KEY=
# A comma separated list of IP addresses that are allowed to log on to testing accounts
DEV_IP_WHITELIST="::1,127.0.0.1"
# The Sentry client key (DSN) for the Golang project
# e.g. "https://<key>@sentry.io/<project>"
# If blank, Sentry will not initialize
# https://docs.sentry.io/error-reporting/quickstart/?platform=browser#configure-the-sdk
SENTRY_DSN=
# The OAuth token from a Twitch account used for the bot
# (make sure to include the "oauth:" prefix)
# (if blank, the Twitch bot will not initialize)
# https://twitchapps.com/tmi/
TWITCH_OAUTH=
# The token from a Discord account used for the bot
# (if blank, the Discord bot will not initialize)
# https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token
DISCORD_TOKEN=
# A Google Analytics tracking ID
# (if blank, the GA middleware will not be used)
# https://analytics.google.com/
GA_TRACKING_ID=