Project Pulse

Feature-first SvelteKit CRUD starter for local and Vercel deployment.

Scalable CRUD Starter

Build fast locally. Deploy cleanly on Vercel. Keep the codebase readable.

Project Pulse demonstrates a feature-first SvelteKit architecture with PostgreSQL, Drizzle, Zod validation, and reusable Tailwind UI primitives.

Projects

2

Active Projects

1

Tasks

1

Completed Tasks

0

Architecture

How this starter stays easy to scale

  • Feature modules isolate validation, repository access, queries, and business rules.
  • Routes remain orchestration-only, which keeps request handling thin and predictable.
  • Database access stays under `src/lib/server`, so browser code cannot import it by accident.
  • Drizzle schema and migrations are committed, which keeps local and Vercel environments aligned.