From 783ecbe2bacc89e7722527e564cc2e483076570d Mon Sep 17 00:00:00 2001 From: Chris Church Date: Wed, 11 Dec 2013 11:45:34 -0500 Subject: [PATCH] AC-752 Add RabbitMQ role to setup, update CONTRIBUTING doc. --- README.md | 2 +- awx/settings/local_settings.py.example | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b9c7ffc120..b460eb24bf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ AWX Formerly known as ansible-commander and AnsibleWorks, AWX provides a web-based user interface, REST API and task engine built on top of Ansible. -The current version under development is 1.4, and uses the master branch. +The current version under development is 1.4.5, and uses the master branch. 1.2.2 was the initial version released on July 31, 2013. diff --git a/awx/settings/local_settings.py.example b/awx/settings/local_settings.py.example index e5e88f54dc..e8781b572f 100644 --- a/awx/settings/local_settings.py.example +++ b/awx/settings/local_settings.py.example @@ -43,6 +43,9 @@ if len(sys.argv) >= 2 and sys.argv[1] == 'test': } } +# Celery AMQP configuration. +BROKER_URL = 'amqp://awx-dev:AWXsome1@localhost:5672/awx-dev' + # Absolute filesystem path to the directory to host projects (with playbooks). # This directory should NOT be web-accessible. PROJECTS_ROOT = os.path.join(BASE_DIR, 'projects')