···1616- React with Vite and TypeScript
1717- HeadlessUI, Tailwind CSS, and Radix
1818- Apollo GraphQL with Hono
1919-- Prisma with Postgres
2019- Zustand and TanStack React Query
2120- Zod for validation
2221- Prosekit with Remark and Rehype
-8
README.md
···7979pnpm dev
8080```
81818282-## Code Generation
8383-8484-Generate Prisma clients and GraphQL types across all workspaces:
8585-8686-```bash
8787-pnpm codegen
8888-```
8989-9082## Build
91839284### Build the application
···11-/*
22- Warnings:
33-44- - You are about to drop the `AccountPermission` table. If the table is not empty, all the data it contains will be lost.
55- - You are about to drop the `Permission` table. If the table is not empty, all the data it contains will be lost.
66-77-*/
88--- DropForeignKey
99-ALTER TABLE "AccountPermission" DROP CONSTRAINT "AccountPermission_permissionId_fkey";
1010-1111--- DropTable
1212-DROP TABLE "AccountPermission";
1313-1414--- DropTable
1515-DROP TABLE "Permission";
1616-1717--- DropEnum
1818-DROP TYPE "PermissionType";
···11-/*
22- Warnings:
33-44- - A unique constraint covering the columns `[email]` on the table `AppRequest` will be added. If there are existing duplicate values, this will fail.
55-66-*/
77--- CreateIndex
88-CREATE UNIQUE INDEX "AppRequest_email_key" ON "public"."AppRequest"("email");