feat(backend): init aris-backend with Hono

- Add apps/aris-backend package with Hono server
- Add /health endpoint
- Add backend-spec.md with design decisions

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-01-25 14:54:08 +00:00
parent 1893c516f3
commit b744af9c51
5 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Hono } from "hono"
const app = new Hono()
app.get("/health", (c) => c.json({ status: "ok" }))
export default {
port: 3000,
fetch: app.fetch,
}