mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-20 00:11:34 +00:00
Shared layout for setup, login, and callback pages with consistent styling. Add GitHub mark icon to action buttons. Document dev server commands in CLAUDE.md. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
637 B
637 B
Arc
Dev servers
arc serve --demo— starts the Rust API server in demo modecd apps/arc-web && bun run dev— starts the React dev server
API workflow
The OpenAPI spec at openapi/arc-api.yaml is the source of truth for the arc-api HTTP interface.
- Edit
openapi/arc-api.yaml cargo build -p arc-types— build.rs regenerates Rust types via typify- Write/update handler in
crates/arc-api/src/server.rs, add route tobuild_router() cargo test -p arc-api— conformance test catches spec/router driftcd packages/arc-api-client && bun run generate— regenerates TypeScript Axios client