Add support for standalone docker install

This commit is contained in:
Matthew Jones
2017-08-29 16:14:28 -04:00
parent 327be00e8f
commit 067beb90c9
7 changed files with 281 additions and 7 deletions

View File

@@ -35,6 +35,13 @@ data:
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False
LOGGING['handlers']['console'] = {
'()': 'logging.StreamHandler',
'level': 'DEBUG',
'formatter': 'simple',
}
LOGGING['loggers']['django.request']['handlers'] = ['console']
LOGGING['loggers']['rest_framework.request']['handlers'] = ['console']
LOGGING['loggers']['awx']['handlers'] = ['console']