-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
29 lines (21 loc) · 982 Bytes
/
.env
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
# This file stores environment variables for local development use.
# When the app is deployed to Heroku, these same environment variables should
# be provided over Heroku's web UI.
# Warning!! Do not set DEBUG=True in a live deployment.
DEBUG = 'True'
# SECRET_KEY is a cryptographic secret used by Flask.
# See http://flask.pocoo.org/docs/0.11/quickstart/ for an example of how to generate one.
SECRET_KEY = 'V\x8cjc\xff\xb8\x02\x9f@JV\r\xd9K\xe9\xd5\xe0\xa1m\x9e\xd0 \x99*'
# Postgres and RabbitMQ are configured in vagrant-init.sh.
# URL of SQL database for SQLAlchemy. Gets filled in automatically when
# deployed to Heroku
DATABASE_URL = 'postgres://vagrant@localhost:5432/vagrant'
# Password for Postgresql
PGPASSWORD = 'password'
CLOUDAMQP_URL = 'amqp://guest:guest@localhost:5672/'
# Facebook app id and secret for testing
# TODO Censor these before committing this file to git
FACEBOOK_APP_ID = ''
FACEBOOK_APP_SECRET = ''
GMAIL_USERNAME = ''
GMAIL_PASSWORD = ''