Start the Vite dev server for frontend development.
Steps
- •Check if the
frontend/directory exists:
bash
test -d frontend && echo "Frontend found" || echo "ERROR: No frontend/ directory. Run npx wao create with frontend option to scaffold one."
- •
If
frontend/doesn't exist, stop and tell the user to re-scaffold with the frontend option. - •
Install frontend dependencies if needed:
bash
cd frontend && npm install
- •Start the Vite dev server:
bash
cd frontend && npm run dev
- •Report the local URL (usually http://localhost:5173).