Open a command line window in the backend project directory and run the command
uvicorn main:app --reload
Open another command line window in the frontend project directory, first run
npm install
(if it's the first time you are running the project), then run
npm run serve
Starting the FastAPI backend and Vue.js frontend for a typical web application project.