diff --git a/sample-apps/django-mysql-gunicorn/Makefile b/sample-apps/django-mysql-gunicorn/Makefile index fb484c31..b50e363c 100644 --- a/sample-apps/django-mysql-gunicorn/Makefile +++ b/sample-apps/django-mysql-gunicorn/Makefile @@ -9,7 +9,7 @@ install: clean .PHONY: run run: install @echo "Running sample app django-mysql-gunicorn with Zen on port 8082" - poetry run python manage.py migrate + poetry run python manage.py migrate || true AIKIDO_DEBUG=true AIKIDO_BLOCKING=true AIKIDO_TOKEN="AIK_secret_token" \ AIKIDO_REALTIME_ENDPOINT="http://localhost:5000/" \ @@ -19,6 +19,6 @@ run: install .PHONY: runZenDisabled runZenDisabled: install @echo "Running sample app django-mysql-gunicorn without Zen on port 8083" - poetry run python manage.py migrate + poetry run python manage.py migrate || true AIKIDO_DISABLE=1 \ poetry run ddtrace-run gunicorn -c gunicorn_config.py --workers 4 --threads 2 --log-level debug --access-logfile '-' --error-logfile '-' --bind 0.0.0.0:8083 sample-django-mysql-gunicorn-app.wsgi diff --git a/sample-apps/django-mysql/Makefile b/sample-apps/django-mysql/Makefile index 023489d0..86e5f594 100644 --- a/sample-apps/django-mysql/Makefile +++ b/sample-apps/django-mysql/Makefile @@ -9,7 +9,7 @@ install: clean .PHONY: run run: install @echo "Running sample app django-mysql with Zen on port 8080" - poetry run python manage.py migrate + poetry run python manage.py migrate || true AIKIDO_DEBUG=true AIKIDO_BLOCKING=true AIKIDO_TOKEN="AIK_secret_token" \ AIKIDO_REALTIME_ENDPOINT="http://localhost:5000/" \ @@ -19,6 +19,6 @@ run: install .PHONY: runZenDisabled runZenDisabled: install @echo "Running sample app django-mysql without Zen on port 8081" - poetry run python manage.py migrate + poetry run python manage.py migrate || true AIKIDO_DISABLE=1 \ poetry run python manage.py runserver 0.0.0.0:8081 diff --git a/sample-apps/django-postgres-gunicorn/Makefile b/sample-apps/django-postgres-gunicorn/Makefile index 87b6f9c1..3a5971ff 100644 --- a/sample-apps/django-postgres-gunicorn/Makefile +++ b/sample-apps/django-postgres-gunicorn/Makefile @@ -9,7 +9,7 @@ install: clean .PHONY: run run: install @echo "Running sample app django-postgres-gunicorn with Zen on port 8100" - poetry run python manage.py migrate + poetry run python manage.py migrate || true AIKIDO_DEBUG=true AIKIDO_BLOCKING=true AIKIDO_TOKEN="AIK_secret_token" \ AIKIDO_REALTIME_ENDPOINT="http://localhost:5000/" \ @@ -20,6 +20,6 @@ run: install .PHONY: runZenDisabled runZenDisabled: install @echo "Running sample app django-postgres-gunicorn without Zen on port 8101" - poetry run python manage.py migrate + poetry run python manage.py migrate || true AIKIDO_DISABLE=1 \ poetry run gunicorn -c gunicorn_config.py --workers 4 --threads 2 --log-level debug --access-logfile '-' --error-logfile '-' --bind 0.0.0.0:8101 sample-django-postgres-gunicorn-app.wsgi