Files
awx/awx/settings/development_quiet.py
2015-06-11 16:10:23 -04:00

16 lines
330 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