feat: display user biomarker results with severity indicators and visual scale bars on dashboard

This commit is contained in:
2025-12-21 18:17:49 +05:30
parent 8919942322
commit 923311e650
9 changed files with 423 additions and 86 deletions

View File

@@ -54,7 +54,7 @@ frontend-install:
cd frontend && npm install
frontend-dev:
cd frontend && npm run dev
cd frontend && npm run dev -- --host 0.0.0.0
frontend-build:
cd frontend && npm run build
@@ -82,7 +82,7 @@ test: backend-test frontend-test
serve:
@echo "Starting backend (port 3000) and frontend (port 5173)..."
@cd backend && cargo run -- serve & cd frontend && npm run dev
@cd backend && cargo run -- serve & cd frontend && npm run dev -- --host 0.0.0.0
clean:
cd backend && cargo clean