mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:19:24 +02:00
14 lines
323 B
Python
14 lines
323 B
Python
DATABASES = {
|
|
'default': {
|
|
'ATOMIC_REQUESTS': True,
|
|
'ENGINE': 'django.db.backends.postgresql',
|
|
'NAME': "awx",
|
|
'USER': "awx",
|
|
'PASSWORD': "awxpass",
|
|
'HOST': "postgres",
|
|
'PORT': "5432",
|
|
}
|
|
}
|
|
|
|
BROADCAST_WEBSOCKET_SECRET = "{{ '🤖starscream🤖' | b64encode }}"
|