mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 21:21:21 -03:30
* Add dependencies for pystatsd and django-statsd-mozilla * Default turned off except for development environment * Modify docker-compose to install statsd/graphite host
17 lines
375 B
Python
17 lines
375 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
|
|
STATSD_CLIENT = 'django_statsd.clients.null'
|