/full-stack-jack-sveltekit

SvelteKit demo with Supabase, Typescript, Prisma & PlanetScale

Primary LanguageSvelte

Full Stack Jack

SvelteKit demo with Supabase, Typescript, Prisma & PlanetScale. This is a ported version of the original demo Full Stack Jack built with Nuxt 3.

Project Setup

  • Clone the project
git clone https://github.com/sytanta/full-stack-jack-sveltekit
  • Install dependencies
npm i

Database

  • Register and create a PlanetScale database url for Prisma

  • Update or create a .env file with the following content:

DATABASE_URL="..."
STRIPE_SECRET_KEY="..."
PUBLIC_STRIPE_PRO_MEMBERSHIP_KEY="..." # This is the product id of the Stripe subscription plan
PUBLIC_APP_DOMAIN="..." # The app's url
  • Create a database from the Prisma schema
npx prisma db push

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.