From 59141e2a60aa0763b693f7f22e08812f6fc66394 Mon Sep 17 00:00:00 2001 From: Brian Glass Date: Mon, 17 Aug 2026 17:41:30 -0400 Subject: [PATCH] Delete the Makefile Its remaining use was the firebase target for manually deploying Firebase Hosting -- now automated as part of the main Cloud Build trigger (ExtractStatic/FirebaseDeploy steps in cloudbuild.yaml, see #189), making the manual deploy path (and the docker/run/uvicorn/deploy/ test targets alongside it, all superseded by docker compose) dead weight. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01Hf6j2xXQXywHVh3HAVRxB3 --- Makefile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 2e6b506..0000000 --- a/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# For timings use the following: -# | ts -s '[%Y-%m-%d %H:%M:%.S]' -# -docker: - docker build -t orthocal . - -run: - docker run -it -e PORT=8000 -e ALLOWED_HOSTS='localhost' -e WEB_CONCURRENCY=4 -p8000:8000 orthocal - -uvicorn: - # newrelic-admin run-program uvicorn --lifespan off --host 0.0.0.0 --port 8000 orthocal.asgi:application - newrelic-admin run-program uvicorn --lifespan off --host 0.0.0.0 --port 8000 --workers 4 orthocal.asgi:application - # newrelic-admin run-program uvicorn --workers 2 --lifespan off --host 0.0.0.0 --port 8000 orthocal.asgi:application - -deploy: - docker tag orthocal:latest gcr.io/orthocal-1d1b9/orthocal:latest - docker push gcr.io/orthocal-1d1b9/orthocal:latest - -test: - docker run -it -e PORT=8000 -p8000:8000 orthocal ./manage.py test - -firebase: - firebase use --add orthocal-1d1b9 - firebase deploy --only hosting