-
Notifications
You must be signed in to change notification settings - Fork 8
/
.env.example
61 lines (48 loc) · 1.79 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
# Django's debug feature. This should be False unless you know what you're doing
debug=False
# This should be 50 randomly generated characters. Keep this secret!
secret_key=Change-me!
# It is strongly recommended to set this to the domain name of your website
allowed_hosts=*
# Change this to your domain. In most cases it should be the same as allowed_hosts
site_url=127.0.0.1
# Database credentials. Make sure the database exists. We recommend using a dedicated user
# If you are following our instructions the only thing that needs to be changed is db_password
# Use postgres for PostgreSQL. Use sqlite for SQLite.
db_type=postgres
db_host=project-olly-db
db_port=5432
db_name=olly
db_username=olly
db_password=secret_password
# Object storage credentials (AWS S3 compatable)
storage_key_id=asdf123
storage_secret_key=asdf123
storage_bucket_name=project-olly
storage_endpoint_url=https://s3.us-east-2.amazonaws.com
# Your email server (for example smtp.gmail.com)
email_host=email.us-east-2.amazonaws.com
# The login information for your email account
email_host_user=fakeaccount
email_host_password=fakepassword
# The email address that will be shown in the From field
from_email="MySite <[email protected]>"
# These shouldn't be changed in most situations
email_use_tls=True
email_port=587
# These can be generated at https://www.google.com/recaptcha. Use recaptcha V2
google_recaptcha_secret_key=asdf123
google_recaptcha_site_key=asdf123
# The name of your site (used the the footer of the default template)
site_name=Project-Olly
# The name of your server (used in the footer of the default template)
site_server=Dev-Env
#### Optional settings (only set these if you know what you're doing)
#enable_wagers=
#enable_store=
#paypal_email=""
#user_verification=
#esports_mode=
#static_path=
#template_path=
#cert_path=