Open a command line window in the project root directory and run the command
uvicorn backend.main:app --reloadOpen 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 serveStarting the FastAPI backend and Vue.js frontend for a typical web application project.
docker compose up -d --buildThen open the app at:
- Frontend: http://127.0.0.1:8080
- OpenAPI: http://127.0.0.1:8000/docs
More backend runtime/config details are documented in backend/README.md.