This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
csmb-housewars/CollegiateHouseWars/settings/docker.py

12 lines
236 B
Python

from .local import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'dev',
'USER': 'root',
'PASSWORD': 'passw0rd',
'HOST': 'mysqldb',
'PORT': '3306'
}
}