mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 22:18:01 -03:30
bypass the makefile target for most commands in dev supervisor
This commit is contained in:
parent
d1a71fb7be
commit
b5aad8cbed
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user