This template is setup with the followings:
- Frontend: ViteJS + ReactJS + Typescript
- Backend: Poetry + Python 3.11 + FastAPI + uvicorn
- Go do the
app
directory
cd app
- Install the dependencies
npm install
- Run the development server
npm run dev
- Go do the
api
directory
cd api
- Install the dependencies
poetry install
- Run the development server
uvicorn api.server:app --reload