duoqi-api/content/categories.json
Wang Zhuoxuan f6e7be324e feat: initialize duoqi-api project skeleton
Set up Fastify + TypeScript + Drizzle ORM backend with:
- Database schema (7 tables: users, categories, questions, knowledge_cards, user_progress, skill_tree, user_chapter_progress)
- JWT auth middleware + admin token auth
- Route structure for auth, quiz, progress, gamification, payment, and admin
- Service stubs for Phase 1b implementation
- Zod-validated env config, custom error classes
2026-04-08 21:24:15 +08:00

24 lines
398 B
JSON

[
{
"id": "history",
"name": "中国历史",
"slug": "chinese-history",
"sortOrder": 1,
"status": "active"
},
{
"id": "drama",
"name": "经典剧集",
"slug": "classic-drama",
"sortOrder": 2,
"status": "active"
},
{
"id": "crosstalk",
"name": "相声小品",
"slug": "crosstalk-comedy",
"sortOrder": 3,
"status": "active"
}
]