Skip to content

thomasmolorg/boilerplate-mvp

Repository files navigation

SvelteKit MVP Boilerplate

A modern, full-stack SvelteKit boilerplate with Drizzle ORM, PostgreSQL, TailwindCSS, authentication and more ready to go.

Questions? Want to contribute? Need help? Found a bug?

  • Open an issue on GitHub if you found a bug
  • Submit a PR if you have a fix or a feature you want to add
  • Start a discussion for general questions or feedback
  • Ask for help in the discussions section

Tech Stack

  • πŸš€ SvelteKit 2.0+ - Latest version
  • πŸ”„ Svelte 5.0 - With runes
  • 🎨 TailwindCSS 4.0 - Utility-first styling
  • 🎨 Bits-UI - Headless UI components
  • πŸ—ƒοΈ Drizzle ORM - Type-safe database queries and Drizzle-kit for migrations
  • 🐘 PostgreSQL - Database
  • πŸ”’ Better-auth - Authentication system, check their docs for plugins:
    • Email/password authentication
    • Social/oauth login
    • Rate limiting
    • Handle payments andsubscriptions with Stripe or Polar
    • Organizations/teams
  • πŸ“¦ Bun - Fast JavaScript runtime and package manager
  • 🧩 TypeScript - For type safety throughout the codebase
  • 🧹 Prettier - Code formatting with Tailwind plugin
  • πŸ§ͺ Vite - Build tool

Getting Started

Prerequisites

  • Bun (recommended) or Node.js 22+
  • PostgreSQL database

Installation

  1. Clone this repository
git clone https://github.com/thomasmolorg/sveltekit-boilerplate.git
cd sveltekit-mvp-boilerplate
  1. Install dependencies
bun install
  1. Set up your environment variables
cp .env.example .env

Edit the .env file with your database credentials and other configuration.

  1. Run database migrations
bun run db:migrate
  1. Start the development server
bun run dev

Database Management

  • Generate migrations: bun run db:generate
  • Run migrations: bun run db:migrate
  • Open Drizzle Studio: bun run db:studio

Project Structure

β”œβ”€β”€ drizzle/             # Database migrations
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ lib/             # Shared utilities and components
β”‚   β”‚   β”œβ”€β”€ server/      # Server-only code
β”‚   β”‚   β”‚   └── db/      # Database schema and connection
β”‚   β”œβ”€β”€ routes/          # SvelteKit routes
β”‚   β”‚   β”œβ”€β”€ app/         # Protected application routes
β”‚   β”‚   └── (auth)/      # Authentication routes
β”‚   β”œβ”€β”€ hooks.server.ts  # SvelteKit hooks for auth and more
β”œβ”€β”€ static/              # Static assets
β”œβ”€β”€ drizzle.config.ts    # Drizzle ORM configuration
└── svelte.config.js     # SvelteKit configuration

Authentication

This boilerplate includes a pre-configured authentication system using better-auth. It provides:

  • User registration and login
  • Session management
  • Protected routes

Deployment

This boilerplate can be deployed to any platform that supports SvelteKit applications:

  • Vercel
  • Netlify
  • Cloudflare Pages
  • Railway
  • Fly.io
  • Self-hosted with Node.js or Bun on e.g. AWS, Azure, etc.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

About

SvelteKit MVP Boilerplate.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published