~allanlesage/qa-coverage-dashboard/simplify-extractor

« back to all changes in this revision

Viewing changes to deployment/settings_testing.py

  • Committer: chris.gagnon
  • Date: 2014-02-25 15:36:32 UTC
  • mfrom: (741.1.9 deployment)
  • Revision ID: chris.gagnon@canonical.com-20140225153632-kj9gddp684q9xhis
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
import os
 
3
 
 
4
#os.environ[\"HOME\"] = \"$REPO_DIR/tmp\"
 
5
 
 
6
INSTALL_PATH = "/home/ubuntu/qa_dashboard-testing"
 
7
 
 
8
STATIC_ROOT = os.path.join(INSTALL_PATH, "static")
 
9
 
 
10
CONFIGURATION = 'testing'
 
11
DEBUG = True
 
12
 
 
13
DATABASES = {
 
14
    'default': {
 
15
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
 
16
        'NAME': 'qa_dashboard-testing',
 
17
        'USER': 'ubuntu',
 
18
        'PASSWORD': 'ubuntu',
 
19
        'HOST': '',
 
20
        'PORT': '5432',
 
21
    }
 
22
}
 
23
 
 
24
ADMINS = (
 
25
#    ('Admin Name', 'admin.name@someplace.com'),
 
26
)
 
27
 
 
28
#SECRET_KEY = 'REPLACE_ME'
 
29
#API_TOKEN = 'REPLACE_ME'