diff --git a/app/web1/__init__.py b/app/web/__init__.py similarity index 100% rename from app/web1/__init__.py rename to app/web/__init__.py diff --git a/app/web1/main.py b/app/web/main.py similarity index 100% rename from app/web1/main.py rename to app/web/main.py diff --git a/app/web1/static/style.css b/app/web/static/style.css similarity index 100% rename from app/web1/static/style.css rename to app/web/static/style.css diff --git a/app/web1/templates/_reducer_form.html b/app/web/templates/_reducer_form.html similarity index 100% rename from app/web1/templates/_reducer_form.html rename to app/web/templates/_reducer_form.html diff --git a/app/web1/templates/_runs.html b/app/web/templates/_runs.html similarity index 100% rename from app/web1/templates/_runs.html rename to app/web/templates/_runs.html diff --git a/app/web1/templates/index.html b/app/web/templates/index.html similarity index 100% rename from app/web1/templates/index.html rename to app/web/templates/index.html diff --git a/makefile b/makefile index c56af67..e7abbc5 100644 --- a/makefile +++ b/makefile @@ -1,8 +1,8 @@ run: .venv/bin/python flows/embedding_flow.py -web1: - .venv/bin/python -m uvicorn app.web1.main:app --host 0.0.0.0 --port 8001 --reload +web: + .venv/bin/python -m uvicorn app.web.main:app --host 0.0.0.0 --port 8001 --reload demo: .venv/bin/python -m uvicorn app.demo.main:app --host 0.0.0.0 --port 8010 --reload