Skill: Run Frontend Server
This skill automates launching the frontend development environment.
Execution Steps
- •
Change Directory: Navigate to the
./frontend/directory. - •
Execute Task: Run the VS Code task:
"Start Vite Frontend".- •Note: This task executes
npm run devwithin the./frontendcontext.
- •Note: This task executes
- •
Fallback: If the task runner is unavailable, run manually:
bashcd frontend npm install npm run dev
Verification
- •Confirm the Vite server is active (typically on http://localhost:5173).
- •Ensure the frontend can communicate with the backend FastAPI service at /api/v0.