Hackathon Education track project
Run poetry install then poetry shell
After activating the poetry shell, run the following commands:
cd Server/
uvicorn main:app --host 0.0.0.0 --port 8000Once the server is running, you can access the API documentation at:
http://localhost:8000/docs
You can open the documentation in your browser with:
"$BROWSER" http://localhost:8000/docsTo set up the Next.js client application, navigate to the Client directory and run the following commands:
cd Client/
npm install --legacy-peer-deps
npm run devYou can use the setup_and_run.sh script to set up and run both the server and client:
./setup_and_run.sh