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