17 lines
331 B
Python
17 lines
331 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
|
|
|