Initial commit: add FastAPI MVP (모프) and existing web app

Includes FastAPI+Jinja2+HTMX+SQLite implementation with seed categories, plus deployment templates.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dsyoon
2026-02-16 17:17:22 +09:00
commit 27540269b7
37 changed files with 3246 additions and 0 deletions

41
apps/web/package.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"prisma:generate": "prisma generate",
"db:push": "prisma db push --schema prisma/schema.prisma",
"db:migrate": "prisma migrate dev --schema prisma/schema.prisma",
"db:seed": "prisma db seed --schema prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^6.16.0",
"@tailwindcss/typography": "^0.5.19",
"next": "16.1.6",
"prisma": "^6.16.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "tsx prisma/seed.ts"
}
}