770 B
770 B
description
| description |
|---|
| Start the MinAttest project (Backend + Frontend) |
Start MinAttest
This workflow starts the backend (with database) and the frontend.
1. Start Backend (API + Database)
The backend uses .NET Aspire to orchestrate the API and the PostgreSQL container.
// turbo
dotnet run --project backend/MinAttest.AppHost/MinAttest.AppHost.csproj
Important
Check the console output for the API URL (e.g.,
https://localhost:7172or similar). You may need to updatefrontend/minattest-app/vite.config.tsif the port doesn't match10001.
2. Start Frontend
Open a new terminal for the frontend.
cd frontend/minattest-app
npm install
npm run dev
Note
The frontend will be available at
http://localhost:5173.