Statistics
| Branch: | Tag: | Revision:

root / conf / ci / settings.py.mysql @ ba3b47d6

History | View | Annotate | Download (330 Bytes)

1

    
2
DATABASES = {
3
	    'default': {
4
		'ENGINE': 'django.db.backends.mysql',
5
		'NAME': 'synnefo',
6
		'USER': 'synnefo',
7
		'PASSWORD': 'synnefo',
8
		'HOST': 'localhost',
9
		'PORT': '3128',
10
		'OPTIONS': {
11
		    'init_command': 'SET storage_engine=INNODB',
12
		}
13
	    }
14
	}
15

    
16
BACKEND_PREFIX_ID = "jenkins-"
17
INSTALLED_APPS += ('django_hudson',)