feat(01-01): scaffold project with Vite, Hono, TanStack Router, Tailwind, and Drizzle config

- Initialize bun project with all frontend/backend dependencies
- Configure Vite with TanStack Router plugin, React, and Tailwind v4
- Create Hono server with health check and static file serving
- Set up TanStack Router file-based routes with root layout
- Add Drizzle config, Biome linter, and proper .gitignore

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-14 22:33:28 +01:00
parent 5558381e09
commit 67ff86039f
15 changed files with 986 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/")({
component: CollectionPage,
});
function CollectionPage() {
return (
<div className="p-8">
<h1 className="text-2xl font-bold text-gray-900">GearBox Collection</h1>
</div>
);
}