├── .github └── hono-prisma.png ├── .gitignore ├── README.md ├── app ├── client.ts ├── global.d.ts ├── routes │ ├── _middleware.ts │ ├── _renderer.tsx │ ├── index.tsx │ └── todos │ │ ├── [id] │ │ └── toggle.tsx │ │ └── clear_completed.tsx └── server.ts ├── migrations └── 0001_create_tables.sql.example ├── package.json ├── prisma ├── .gitkeep └── schema.prisma ├── tsconfig.json ├── vite.config.ts └── wrangler.toml.example /.github/hono-prisma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/.github/hono-prisma.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/README.md -------------------------------------------------------------------------------- /app/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/client.ts -------------------------------------------------------------------------------- /app/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/global.d.ts -------------------------------------------------------------------------------- /app/routes/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/routes/_middleware.ts -------------------------------------------------------------------------------- /app/routes/_renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/routes/_renderer.tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/routes/todos/[id]/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/routes/todos/[id]/toggle.tsx -------------------------------------------------------------------------------- /app/routes/todos/clear_completed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/routes/todos/clear_completed.tsx -------------------------------------------------------------------------------- /app/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/app/server.ts -------------------------------------------------------------------------------- /migrations/0001_create_tables.sql.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/migrations/0001_create_tables.sql.example -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/package.json -------------------------------------------------------------------------------- /prisma/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/vite.config.ts -------------------------------------------------------------------------------- /wrangler.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/cloudflare-d1-prisma-honox-starter/HEAD/wrangler.toml.example --------------------------------------------------------------------------------