From b5aad8cbed9a6c56d31034c8b584d44f53fb5672 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Mon, 13 Feb 2017 11:45:11 -0500 Subject: [PATCH] bypass the makefile target for most commands in dev supervisor --- tools/docker-compose/supervisor.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/docker-compose/supervisor.conf b/tools/docker-compose/supervisor.conf index 787720fec3..f33066e627 100644 --- a/tools/docker-compose/supervisor.conf +++ b/tools/docker-compose/supervisor.conf @@ -4,7 +4,7 @@ minfds = 4096 nodaemon=true [program:celeryd] -command = make celeryd +command = python manage.py celeryd -l DEBUG -B --autoreload --autoscale=20,3 --schedule=/celerybeat-schedule -Q projects,jobs,default,scheduler,broadcast_all,%(ENV_HOSTNAME)s -n celery@%(ENV_HOSTNAME)s autostart = true autorestart = true redirect_stderr=true @@ -12,7 +12,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:receiver] -command = make receiver +command = python manage.py run_callback_receiver autostart = true autorestart = true redirect_stderr=true @@ -20,7 +20,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:runworker] -command = make runworker +command = python manage.py runworker --only-channels websocket.* autostart = true autorestart = true redirect_stderr=true @@ -36,7 +36,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:daphne] -command = make daphne +command = daphne -b 0.0.0.0 -p 8051 awx.asgi:channel_layer autostart = true autorestart = true redirect_stderr=true @@ -44,7 +44,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:factcacher] -command = make factcacher +command = python manage.py run_fact_cache_receiver autostart = true autorestart = true redirect_stderr=true @@ -52,7 +52,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:nginx] -command = make nginx +command = nginx -g "daemon off;" autostart = true autorestart = true redirect_stderr=true