Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / test / settings / local.conf @ e3ff6830

History | View | Annotate | Download (595 Bytes)

1
DEBUG = True
2
ASTAKOS_COOKIE_SECURE = False
3
SESSION_COOKIE_SECURE = False
4

    
5
EMAIL_BACKEND='django.core.mail.backends.dummy.EmailBackend'
6

    
7
DATABASES = {
8
    'default': {
9
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
10
        'NAME': 'astakos_test',
11
        'USER': 'tester',
12
        'PASSWORD': 'test',
13
        'HOST': '127.0.0.1',
14
        'PORT': '5432',
15
        'OPTIONS' : {},
16
        }
17
}
18

    
19
HOST   = 'http://127.0.0.1'
20

    
21
# FIXME: ASTAKOS_URL = HOST + ':8000/astakos/api/authenticate'
22
ASTAKOS_BASE_URL = HOST + ':8000/'
23
ASTAKOS_IM_MODULES = ['local']
24
ASTAKOS_RECAPTCHA_ENABLED = False