- Next.js (App Router) + TypeScript
- tRPC + Ant Design + Tailwind CSS
- NextAuth.js
- Phaser
- drizzle-orm + pg
采用DDD开发模式
docs/
src/
├── app/ # 路由页面与 API Route
├── client/ # 前端模块
│ ├── components/ # 通用组件
│ ├── features/ # 按业务拆分
│ │ └── auth/
│ └── lib/ # 前端基础能力(如 trpc client)
└── server/ # 后端模块
├── lib/
│ ├── trpc/
│ └── db/
└── features/
├── auth/
│ ├── application/
│ └── infrastructure/
├── person/
│ ├── application/
│ ├── domain/
│ └── infrastructure/
├── plot/
├── building/
└── shared-kernel/