mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
20 lines
399 B
Python
20 lines
399 B
Python
# Fill in this file and save as settings_local.py
|
|
|
|
DEBUG = True
|
|
|
|
ADMINS = (
|
|
('Your Name', 'you@example.com'),
|
|
)
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'wfgsite',
|
|
'USER': 'wfgsite',
|
|
'PASSWORD': '################',
|
|
}
|
|
}
|
|
|
|
SECRET_KEY = '##################################################'
|
|
|
|
WFGSITE_ROOT = '/var/####/wfgsite'
|