aemo_fr/settings/aemo_tests.py

15 lines
293 B
Python
Raw Permalink Normal View History

2024-06-03 16:49:01 +02:00
from settings.aemo import * # noqa
SECRET_KEY = 'ForAutomatedTestsC9g'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'ci_test',
'USER': 'runner',
'PASSWORD': '',
'HOST': 'postgres',
'PORT': '5432',
}
}