remove honcho in the dev environment (just use foregrounded supervisor)

using supervisor gives us the ability to restart entire processes on
code change (like the dispatcher and callback receiver)
This commit is contained in:
Ryan Petrello
2019-05-08 13:10:52 -04:00
parent 70972f7ea1
commit 766a5c0c3f
7 changed files with 9 additions and 31 deletions

View File

@@ -27,9 +27,4 @@ mkdir -p /awx_devel/awx/public/static
mkdir -p /awx_devel/awx/ui/static
cd /awx_devel
# Start the services
if [ -f "/awx_devel/tools/docker-compose/use_dev_supervisor.txt" ]; then
make supervisor
else
honcho start -f "tools/docker-compose/Procfile"
fi
make supervisor