From 253a6cffd484a30f98f011efab11a990ee3efaba Mon Sep 17 00:00:00 2001 From: Chris Church Date: Thu, 23 Oct 2014 12:58:41 -0400 Subject: [PATCH] Add default SYSTEM_UUID for development. --- awx/settings/development.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/awx/settings/development.py b/awx/settings/development.py index 3e6c4f984f..10e85be3e0 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -45,6 +45,9 @@ if 'django_jenkins' in INSTALLED_APPS: JSHINT_CHECKED_FILES = [os.path.join(BASE_DIR, 'ui/static/js'), os.path.join(BASE_DIR, 'ui/static/lib/ansible'),] +# Configure a default UUID for development only. +SYSTEM_UUID = '00000000-0000-0000-0000-000000000000' + # If there is an `/etc/tower/settings.py`, include it. # If there is a `/etc/tower/conf.d/*.py`, include them. include(optional('/etc/tower/settings.py'), scope=locals())