-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
46 lines (38 loc) · 1.14 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
# Example file, move this to .env
# Basic environent config
PRODUCTION=False
FLASK_APP=wsgi.py
FLASK_ENV=development
FLASK_DEBUG=true
# Create a random secret key (not important that this is secure for development)
SECRET_KEY=''
# Database config
# Change if needed for your local set-up,
# but the defaults should work for most people
DATABASE_NAME=mittab_deployer
DATABASE_PASSWORD=
DATABASE_USER=root
DATABASE_HOST=localhost
DATABASE_PORT=3306
REDIS_URL=redis://localhost:6379/
# DigitalOcean Keys
DIGITALOCEAN_TOKEN=''
# These are just passed along to the server
# for digitalocean's object storage API, should be
# safe to set to nonsense for testing
DIGITALOCEAN_ACCESS_KEY_SECRET=''
DIGITALOCEAN_ACCESS_KEY_ID=''
# Necessary stripe keys
STRIPE_PUBLISHABLE_KEY=''
STRIPE_SECRET_KEY=''
# Emails are just sent with an SMTP client
MAIL_USERNAME=''
MAIL_PASSWORD=''
# Sentry DSN for errors within the Deployer app
SENTRY_DSN=''
# Sentry DSN for mit-tab servers
MITTAB_SENTRY_DSN=''
# If you want to test the domain config, change this to a domain
# you control and have managed by DigitalOcean. Otherwise, remove if from
# the file
NU_TAB_DOMAIN=nu-tab.com