X Tutup
Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Getting Started

First, run the backend development server:

cd backend

vercel link
vercel env pull

# or manually set env vars
# cat .env.example > .env

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

python server.py

Open http://localhost:8081/docs with your browser to see the backend.

Then, run the frontend development server:

# in a separate terminal
cd frontend

npm i

npm run dev

Open http://localhost:3000 with your browser to see the frontend.

X Tutup