summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHao Liu <44379968+TheRealHaoLiu@users.noreply.github.com>2024-03-06 21:22:44 +0100
committerGitHub <noreply@github.com>2024-03-06 21:22:44 +0100
commit1b56d94d3083d6cd598ae2ad8f5d142559b16f77 (patch)
tree125a23e69673f9ec3c3d82d12db1b0f07fd5d9c4 /Makefile
parentAllow for manually starting workflow to build devel images (#14955) (diff)
downloadawx-1b56d94d3083d6cd598ae2ad8f5d142559b16f77.tar.xz
awx-1b56d94d3083d6cd598ae2ad8f5d142559b16f77.zip
In development environment not auto-reload explicitly STOPPED processes (#14958)
Not auto-reload explicitly STOPPED processes In development/debug workflow sometime we explicitly STOP processes this will make sure auto-reload does not start them back up
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a78e666ee7..50e3f7c77d 100644
--- a/Makefile
+++ b/Makefile
@@ -216,8 +216,6 @@ collectstatic:
fi; \
$(PYTHON) manage.py collectstatic --clear --noinput > /dev/null 2>&1
-DEV_RELOAD_COMMAND ?= supervisorctl restart tower-processes:*
-
uwsgi: collectstatic
@if [ "$(VENV_BASE)" ]; then \
. $(VENV_BASE)/awx/bin/activate; \
@@ -225,7 +223,7 @@ uwsgi: collectstatic
uwsgi /etc/tower/uwsgi.ini
awx-autoreload:
- @/awx_devel/tools/docker-compose/awx-autoreload /awx_devel/awx "$(DEV_RELOAD_COMMAND)"
+ @/awx_devel/tools/docker-compose/awx-autoreload /awx_devel/awx
daphne:
@if [ "$(VENV_BASE)" ]; then \