Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 696 Bytes

readme.md

File metadata and controls

67 lines (44 loc) · 696 Bytes

Frontend

setup

open a new terminal

cd frontend
npm install

populate the .env using .env.sample

build

npm run build

start

npm run preview

frontend will be running on http://localhost:5173

Backend

open a new terminal

cd backend

Start the venv

python3 -m venv venv
source venv/bin/activate

On windows

python -m venv venv
venv\Scripts\activate

Install the requirements

pip install -r requirements.txt

populate the .env using .env.sample

Run the server

uvicorn main:app --reload

backend will be running on http://localhost:8000