diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-03-06 21:22:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 21:22:44 +0100 |
commit | 1b56d94d3083d6cd598ae2ad8f5d142559b16f77 (patch) | |
tree | 125a23e69673f9ec3c3d82d12db1b0f07fd5d9c4 /Makefile | |
parent | Allow for manually starting workflow to build devel images (#14955) (diff) | |
download | awx-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-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 \ |