diff --git a/makefile b/makefile index 0901317..c56af67 100644 --- a/makefile +++ b/makefile @@ -4,12 +4,6 @@ run: web1: .venv/bin/python -m uvicorn app.web1.main:app --host 0.0.0.0 --port 8001 --reload -web2: - .venv/bin/python -m uvicorn app.web2.main:app --host 0.0.0.0 --port 8002 --reload - -web3: - .venv/bin/python -m uvicorn app.web3.main:app --host 0.0.0.0 --port 8003 --reload - demo: .venv/bin/python -m uvicorn app.demo.main:app --host 0.0.0.0 --port 8010 --reload