KO
|
EN
gitlite — search
Search
#python
#php
#c-plus-plus
#ruby
#hacktoberfest
#shell
#library
#javascript
#parser
#bash
#dotfiles
#java
sveltekit-saas
★ 60
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
yt-authjs-v5
:
No description available.
starlight-auth
:
Starlight + Auth.js template
t3-app-router-edge
:
A simple example app which runs the excellent T3 Stack on the Edge runtime, with Next.js's beta App Router.
nuxt-saas-stripe-starter
:
Open-source SaaS Starter. Built using Nuxt 4, Nuxt UI, Nuxt Content, Prisma, Neon, Sidebase Nuxt Auth, Resend and Stripe
hp-saas
:
Nextjs SAAS utilizando o repositório do Start-kit de Authjs
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
sveltekit-saas
?
Download (.md)
# SvelteKit SaaS Demo Code examples from the video course [Build a SaaS with SvelteKit](https://joshuanussbaum.podia.com/build-a-saas-with-sveltekit) ## Features - Authentication with Auth.js - Database with Prisma - Plans & pricing page - Payments with Stripe Checkout - Syncing subscription status via webhooks ## Setup Start by copying the example `.env`: ```sh cp .env.example .env ``` Then customize the `.env` file. You'll need to provide values for: - `DATABASE_URL`: The url of your database. - `AUTH_SECRET`: The secret Auth.js uses. Can be generated using `openssl rand -base64 32` - `GITHUB_ID`: The id of your GitHub OAuth client. - `GITHUB_SECRET`: The secret of your GitHub OAuth client. - `SECRET_STRIPE_KEY`: Your Stripe API secret key. - `STRIPE_WEBHOOK_SECRET`: Your Stripe secret for webhooks. Install the dependencies: ```sh pnpm install ``` Create the database: ```sh pnpm prisma db push ``` ## Install the Stripe CLI To tunnel Stripe webhooks in development mode, install Stripe's CLI. Follow instructions here: https://stripe.com/cli ## Development mode First, run the dev server ```sh pnpm dev ``` Then, tell Stripe to tunnel webhooks to the local dev server: ```sh stripe listen --forward-to localhost:5173/integrations/stripe ``` ## Seed data You can adjust the seed data in `prisma/seed.js` to use price ids from your Stripe account. To load seed data, run: ```sh prisma db seed ``` ## Video course For more info, here's the full video: https://joshuanussbaum.podia.com/build-a-saas-with-sveltekit ## License MIT