-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.sample
44 lines (28 loc) · 971 Bytes
/
.env.sample
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
# Reference gflbans/internal/config.py for all configs
# MongoDB
MONGO_URI=mongodb://127.0.0.1:27017
DB_NAME=gflbans_devel
REDIS_URI=redis://127.0.0.1:6379
# Grants all permissions to this Steam32 ID
ROOT_USER=1623
MEDIA_URL=https://bans.gflclan.com/media/
STATIC_URL=https://bans.gflclan.com/static/
# The domain you're hosting this on
HOST=localhost:3335
# Disables HOST/guidelines page
DISABLE_GUIDELINES=True
# Required string, should be long and random!
SECRET_KEY=SECRETKEYHERE
PRODUCTION=False
# Replace all gflbans branding with your own branding
BRANDING=GFLBans
# Profile picture for discord embeds
COMMUNITY_ICON=https://bans.gflclan.com/static/images/gflbans256.png
# Branding for GFLBans in Discord embeds
GFLBANS_ICON=https://bans.gflclan.com/static/images/gflbans256.png
DISCORD_BOT_TOKEN=BOTTOKEN
STEAM_API_KEY=APIKEYHERE
# True = use unix socket, False = use HTTP/TCP
WEB_USE_UNIX=False
# Port to listen on if using HTTP/TCP
WEB_PORT=3335