pip install fastapi
pip install uvicorn
pip install pydantic
- Navigate to /server
- Run the server:
uvicorn main:app --reload
- Server URL:
http://127.0.0.1:8000
- Swagger API Documentation:
http://127.0.0.1:8000/docs
- Navigate to /client
- Install dependencies:
npm install
- Run the client:
npm start