mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
11 lines
214 B
Python
11 lines
214 B
Python
from .development import * # noqa
|
|
from .development import DATABASES
|
|
|
|
|
|
DATABASES['default'] = {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'bugsink',
|
|
'USER': 'bugsink',
|
|
'PASSWORD': 'bugsink',
|
|
}
|