Statistics
| Branch: | Tag: | Revision:

root / conf / ci / settings.py.postgres @ 794433d1

History | View | Annotate | Download (223 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
INSTALLED_APPS += ('django_hudson',)