AITX Hackathon: Event Sonar, a vibe checker for events
Project
cd /backend
Create yourself a virtualenv: python3 -m venv venv
then enter the env
source venv/bin/activate
then install requirements:
pip install fastapi uvicorn python-multipart httpx python-dotenv
then run the backend server:
uvicorn main:app --reload
In another terminal tab:
cd ../frontend
then install the modules:
npm i
then run the nextjs server:
npm run dev