Health & Cost Navigator Prototype - AI & Blockchain Powered.
- Python 3.8+
- Node.js 16+ & npm
Navigate to the backend directory:
cd backendCreate a virtual environment:
# Windows
python -m venv venvActivate the virtual environment:
# Windows
.\venv\Scripts\activateInstall dependencies:
pip install -r requirements.txtRun the server:
uvicorn main:app --reloadThe backend API will be available at http://127.0.0.1:8000.
Docs are available at http://127.0.0.1:8000/docs.
Open a new terminal and navigate to the frontend directory:
cd frontendInstall dependencies:
npm installRun the development server:
npm run devThe frontend will be available at http://localhost:5173.
backend/: FastAPI applicationfrontend/: React + TypeScript application