Initializing codebase and spec-driven configuration for new project based on existing concept file
94
94%
Does it follow best practices?
Impact
95%
7.30xAverage score across 5 eval scenarios
Passed
No known issues
#!/bin/bash
# Start both frontend dev server and Rust backend
# Frontend: http://localhost:5173
# Backend: http://localhost:8000
trap 'kill 0' EXIT
(cd frontend && npm run dev) &
cargo run &
wait