-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
32 lines (25 loc) · 1.01 KB
/
config.py
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
# These variables are in version control.
# This file contains most of the configuration variables that your app needs.
# it s read before instance/config.py, so it overwritten by it
DEBUG = True
MY_VARIABLE = 666
# DBUSER = "sl"
# DBPASSWORD = "imperial"
# DBPORT = "35866"
# DBNAME = "lolipop0"
# DBSERVER = "ds135866"
# MONGOURI = "mongodb://" + DBUSER + ":" + DBPASSWORD + "@"+ DBSERVER + ".mlab.com:" + DBPORT + "/" + DBNAME
DBUSER = "heroku_kkmn7mbg"
DBPASSWORD = "um3c11v432illv93k3o05tlfdv"
DBPORT = "37686"
DBNAME = "heroku_kkmn7mbg"
DBSERVER = "ds135866"
MONGOURI = "mongodb://heroku_kkmn7mbg:[email protected]:37686/heroku_kkmn7mbg"
#
# # Database initialization
# if os.environ.get('DATABASE_URL') is None:
# basedir = os.path.abspath(os.path.dirname(__file__))
# SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db')
# else:
# SQLALCHEMY_DATABASE_URI = os.environ['DATABASE_URL']
# # variables that should not be in version control are in ./instance