-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig_staging.py
21 lines (19 loc) · 1001 Bytes
/
config_staging.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#DATABASE_ENGINE = 'django.db.backends.mysql'
#DATABASE_NAME = 'phonelab_staging'
DATABASE_ENGINE = 'django.db.backends.postgresql_psycopg2'
DATABASE_NAME = 'phonelab'
DATABASES = {
'default': {
'ENGINE' : DATABASE_ENGINE, # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME' : DATABASE_NAME, # Or path to database file if using sqlite3.
# 'USER' : 'phonelab', # Not used with sqlite3.
# 'PASSWORD' : 'dbs3rv3r', # Not used with sqlite3.
# 'HOST' : 'phonelab-backend-db.cg2akhwze6m8.us-east-1.rds.amazonaws.com', # Set to empty string for localhost. Not used with sqlite3.
'USER' : 'phonelab', # Not used with sqlite3.
'PASSWORD' : 'dbmanager', # Not used with sqlite3.
'HOST' : '', # Set to empty string for localhost. Not used with sqlite3.
'PORT' : '', # Set to empty string for default. Not used with sqlite3.
}
}
DEBUG = False
TEMPLATE_DEBUG = DEBUG