Skip to content
Snippets Groups Projects

Feature/mysql testing

Closed Finn-Lucas Ziehe requested to merge feature/mysql-testing into master
3 files
+ 18
14
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 6
7
@@ -8,13 +8,12 @@ except ImportError as e:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': ''
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mise_pr',
'USER': 'root',
# 'PASSWORD':,
'HOST': 'misepr-db',
'PORT': '3306'
}
}
SECRET_KEY = secrets.token_hex(16)
Loading