~mwhudson/linaro-android-frontend/live-output

« back to all changes in this revision

Viewing changes to android_build/settings.py

  • Committer: Michael Hudson
  • Date: 2011-03-15 03:07:16 UTC
  • Revision ID: michael.hudson@linaro.org-20110315030716-ezwwl9qd2o0sbqzh
add a wsgi file

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
DATABASES = {
22
22
    'default': {
23
23
        'ENGINE': 'django.db.backends.sqlite3',
24
 
        'NAME': 'session.db'
 
24
        'NAME': os.path.join(os.path.dirname(PROJECT_DIR), 'session.db'),
25
25
    }
26
26
}
27
27