Files
awx/awx/settings/development_quiet.py
Matthew Jones c7fd21ae52 Fix up flake8 and unit test failures
* Make sure we default to localhost to not fail at the GAI check
* Cleanup some flake8 issues in the metrics module
2016-01-29 13:59:37 -05:00

20 lines
425 B
Python

# Copyright (c) 2015 Ansible, Inc.
# All Rights Reserved.
# Development settings for AWX project, but with DEBUG disabled
# Load development settings.
from defaults import * # NOQA
# Load development settings.
from development import * # NOQA
# Disable capturing DEBUG
DEBUG = False
TEMPLATE_DEBUG = DEBUG
SQL_DEBUG = DEBUG
# Statistics Gathering
STATSD_CLIENT = 'django_statsd.clients.null'
STATSD_HOST = 'localhost'