-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env_example
44 lines (33 loc) · 928 Bytes
/
.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
# Database configuration
POSTGRES_PASSWORD=examplePassword
POSTGRES_USER=bancho
POSTGRES_HOST=127.0.0.1
POSTGRES_PORT=5432
POSTGRES_POOLSIZE=10
POSTGRES_POOLSIZE_OVERFLOW=30
# Redis configuration
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
# S3 Storage configuration
S3_BASEURL=https://example.com
S3_SECRET_KEY=your_secret
S3_ACCESS_KEY=your_key
# If disabled, the data gets stored locally
# Buckets will be created automatically when enabled
ENABLE_S3=False
# Discord webhook url for logging
OFFICER_WEBHOOK_URL=
# Event webhook url (Updates for beatmaps, forums, etc.)
EVENT_WEBHOOK_URL=
## Email configuration (optional)
# You can either set the sendgrid, or mailgun configs for sending emails
SENDGRID_API_KEY=
SENDGRID_EMAIL=
MAILGUN_API_KEY=
MAILGUN_EMAIL=
# Used for ingame links
DOMAIN_NAME=localhost
# This will award pp and rscore for approved/loved maps
APPROVED_MAP_REWARDS=False
# Don't change this
DEBUG=False