Setup

Quickstart & Installation

Take your project from a fresh clone to a running local instance in under 3 minutes.

Clone the repository and install dependencies using pnpm (recommended):

terminal
git clone https://github.com/FunctionalFrost/supersvelte.git
cd supersvelte
pnpm install

Copy the sample environment file and configure your database and authentication secrets:

terminal
cp .env.example .env

# Generate your Better Auth encryption secret:
openssl rand -hex 32

Push the Drizzle schema to your Neon Postgres database and run the initial test seed:

terminal
pnpm db:push
pnpm db:seed

Start the Vite development server with Svelte 5 Runes support:

terminal
pnpm dev
# Open http://localhost:5173 in your browser