Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 497 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 497 Bytes

Template

This template is setup with the followings:

  • Frontend: ViteJS + ReactJS + Typescript
  • Backend: Poetry + Python 3.11 + FastAPI + uvicorn

Development

App

  1. Go do the app directory
cd app
  1. Install the dependencies
npm install
  1. Run the development server
npm run dev

API

  1. Go do the api directory
cd api
  1. Install the dependencies
poetry install
  1. Run the development server
uvicorn api.server:app --reload