diff --git a/Makefile b/Makefile index ff540da0d..f96931a4d 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,10 @@ lint: poetry run ruff . --fix install_frontend: - cd src/frontend && npm install + cd src/frontend && npm install; + +install_frontendc: + cd src/frontend && npm ci; run_frontend: cd src/frontend && npm start @@ -40,6 +43,10 @@ run_frontend: frontend: make install_frontend make run_frontend + +frontendc: + make install_frontendc + make run_frontend install_backend: poetry install