Statistics
| Branch: | Tag: | Revision:

root / conf / ci / settings.py.postgres @ 2e1e6844

History | View | Annotate | Download (295 Bytes)

1

    
2
DATABASES = {
3
	    'default': {
4
		'ENGINE': 'django.db.backends.postgresql_psycopg2',
5
		'NAME': 'synnefo',
6
		'USER': 'synnefo',
7
		'PASSWORD': 'synnefo',
8
		'HOST': '127.0.0.1'
9
	    }
10
}
11

    
12
BACKEND_PREFIX_ID = "jenkins-"
13
INSTALLED_APPS += ('django_hudson',)
14

    
15
#One year
16
AUTH_TOKEN_DURATION = 24 * 365