diff --git a/config/server_config_default.py b/config/server_config_default.py index 52468fb..5b0224e 100644 --- a/config/server_config_default.py +++ b/config/server_config_default.py @@ -47,7 +47,7 @@ if cfg_dev_mode: 'default': { 'ENGINE': 'django.db.backends.mysql', 'OPTIONS': { - 'read_default_file': os.path.join(BASE_DIR, 'Reskreen/my_dev.cnf'), + 'read_default_file': os.path.join(BASE_DIR, 'config/my_dev.cnf'), }, } } @@ -56,7 +56,7 @@ else: 'default': { 'ENGINE': 'django.db.backends.mysql', 'OPTIONS': { - 'read_default_file': os.path.join(BASE_DIR, 'Reskreen/my.cnf'), + 'read_default_file': os.path.join(BASE_DIR, 'config/my.cnf'), }, } }