Statistics
| Branch: | Tag: | Revision:

root / test / django.conf @ 10cc3fd0

History | View | Annotate | Download (672 Bytes)

1
DEBUG = True
2
TEMPLATE_DEBUG = DEBUG
3

    
4
DATABASES = {
5
    'default': {
6
        # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
7
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
8
        'NAME': 'holder',                       # Or path to database file if using sqlite3.
9
        'USER': 'holder',                       # Not used with sqlite3.
10
        'PASSWORD': 'karekla',                  # Not used with sqlite3.
11
        'HOST': 'dev84.dev.grnet.gr',           # Set to empty string for localhost. Not used with sqlite3.
12
        'PORT': '5432',                         # Set to empty string for default. Not used with sqlite3.
13
    }
14
}