This github repository is for the Sentify project.
The working prototype is a dashboard built with React.
fastapi,uvicorn,joblib,numpy,pydantic
npm installdependencies
Run all the following on your terminal:
cd api
python -m venv venv
source venv/bin/activate # or .\venv\Scripts\activate on Windows
pip install fastapi uvicorn joblib numpy pydantic
Then run the API:
python -m uvicorn app:app --reload --host 127.0.0.1 --port 800
cd ..
npm install
npm run dev
Visit: http://localhost:3000