changement config default
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m36s

This commit is contained in:
2024-07-16 03:28:40 +02:00
parent 81166f44c3
commit e0ba006bda

View File

@@ -47,7 +47,7 @@ if cfg_dev_mode:
'default': { 'default': {
'ENGINE': 'django.db.backends.mysql', 'ENGINE': 'django.db.backends.mysql',
'OPTIONS': { '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': { 'default': {
'ENGINE': 'django.db.backends.mysql', 'ENGINE': 'django.db.backends.mysql',
'OPTIONS': { 'OPTIONS': {
'read_default_file': os.path.join(BASE_DIR, 'Reskreen/my.cnf'), 'read_default_file': os.path.join(BASE_DIR, 'config/my.cnf'),
}, },
} }
} }