Coder Social home page Coder Social logo

kkarkos / supanuxt-saas Goto Github PK

View Code? Open in Web Editor NEW

This project forked from javascriptmick/supanuxt-saas

0.0 0.0 0.0 2.43 MB

Simple boilerplate for SAAS. Nuxt3, Supabase, OAuth, Prisma, TRPC, Pinia, Stripe, Tailwind, OpenAI

Home Page: https://nuxt3-saas-boilerplate.netlify.app/

License: MIT License

JavaScript 0.24% TypeScript 51.13% CSS 0.05% Vue 48.57%

supanuxt-saas's Introduction

SupaNuxt SaaS

SupaNuxt SaaS

Netlify Status

Demo Sites

Demo site here

Pottery Helper here

Sister Project using React + Next 13

Sick of Vue.js/Nuxt3, why not checkout React/Next sister project SupaNext SaaS

Community

Discord here

Tech Stack

  • Nuxt 3
  • Supabase (auth including OAuth + Postgresql instance)
  • Prisma (schema management + Strongly typed client)
  • TRPC (server/client communication with Strong types, SSR compatible)
  • Pinia (state Store)
  • Stripe (payments including webhook integration)
  • Tailwind + daisyUI (styling and components)
  • OpenAI (text completions with AI)

Features

User Management

  • Social Signon (e.g. google) via Supabase, Full list of available providers
  • Email/Password Signon via Supabase
  • Password recovery
  • User roles and permissions (admin, regular user, etc. roles defined in the Prisma Schema)
  • User Email captured on initial login
  • Initial plan and plan period controled via config to allow either a trial plan or a 'No Plan' for initial users
  • Edit Account Name from Account Page

Schema and DB Management

  • Prisma based Schema Management
  • Supabase integration for DB
  • DB Seed Script to setup plan information including Plan and Stripe Product information

Config Management and Env integration

  • Config for Stripe Keys
  • Env keys for Supabase and Stripe
  • Config Switches for free trial - If you want a 'free trial period' set initialPlanName to an appropriate plan name in the DB and initialPlanActiveMonths to a positive value. If you don't want a free trial, set initialPlanName to an appropriate 'No Plan' plan in the DB and set the initialPlanActiveMonths to -1.

Multi-Modal State Management

  • SPA type pages (e.g. Dashboard) - postgresql(supabase) -> Prisma -> Service Layer for Business Logic -> TRPC -> Pinia -> UI
  • SSR type pages (e.g. Note) - postgresql(supabase) -> Prisma -> Service Layer for Business Logic -> TRPC -> UI

Multi User Accounts (Teams)

  • Allow users to upgrade their accounts fron individual accounts to multi-user accounts (Teams).
  • Allow users to switch between Teams and view/edit data from the selected Team.
  • All features, billing and limits is controlled at the Account (Team) level (not the user level)
  • Gen/Regen an invite link to allow users to join a team
  • Team administrators and owners can accept pending invites
  • Team administrators and owners can administer the permissions (roles) of other team members on the Accounts page
  • Team owners can remove users from team

Plans and Pricing

  • Manage multiple Plans each with specific Feature flags and Plan limits
  • Plan features copied to Accounts upon successfull subscription
  • Loose coupling between Plan and Account Features to allow ad-hoc account tweaks without creating custom plans
  • Pricing page appropriately reacts to users with/without account and current plan.
  • User Access level available at the router layer as procedures allowing restriction of access based on user access
  • Account features available at the router layer as utility procedures allowing restriction of access based on account features

Stripe (Payments) Integration

  • Each plan is configured with Stripe Product ID so that multiple Stripe Prices can be created for each plan but subscriptions (via Webhook) will still activate the correct plan.
  • Support basic (customer.subscription) flows for Subscription payments via Webhook
  • Support additional Stripe flows for things like failed payments, imminent subscription expiry (send email?) etc.....

Support

  • Help desk support (ticketing system, live chat, etc.)
  • Knowledge base with FAQs and tutorials

Look and Feel, Design System and Customisation

  • Default UI isn't too crap
  • Integrated Design system including theming (Tailwind + daisyUI)
  • Toasts for things like reset email sent
  • Modals, just because people like modals

GDPR

  • Cookie Consent

Demo Software (Notes)

  • Simple Text based Notes functionality
  • Read only Notes Dashboard
  • SSR Rendered (SEO Optimised) Note Display
  • Max Notes limit property on Plan
  • Max Notes enforced
  • Add, Delete notes on Dashboard
  • AI Note generation with OpenAI
  • Per Account, Per Month Useage Limits on AI Access

Testing

  • Manual test scenario for auth and sub workflows passing
  • Unit tests for server functions
  • Integration tests for auth and sub workflows

Special Mention

This https://blog.checklyhq.com/building-a-multi-tenant-saas-data-model/ Article by https://twitter.com/tim_nolet was my inspiration for the user/account/subscription schema. Tim was also generous with his time and answered some of my stoopid questions on the https://www.reddit.com/r/SaaS/ Subreddit.

Externals Setup

Things you gotta do that aren't code (and are therefore not very interesting)

Env

Copy the .env_example file to create .env Note) This file is for development convenience, is .gitignored by default and should not be added to source control

Supabase

This solution uses Supabase for Auth and to provide a DB. In addition to Magic Link and email/password login via Supabase, it also supports Google OAuth via Supabase.

  1. Go to Supabase and 'Start your Project'
  2. Setup your org and project (Free tier is fine to start)
  3. Update the project's email template (Supabase -> Authentication -> Email Templates) Note that the default Supabase email templates are very generic and for some reason, this can lead to your emails being sent to spam folders. for e.g. to get my password reset emails to my inbox, I needed to change the subject to "Password Reset for ..." and the email body text.
  4. Choose an OAuth provider. I have chosen Google using these Instructions for the purposes of demonstration but they all should work.
  5. Go to Project Settings -> API and copy Project URL and Project API Key to SUPABASE_URL and SUPABASE_KEY settings respectively in your .env file
  6. Go to Project Settings -> Database -> Connection String -> URI and copy the uri value into the DATABASE_URL setting in your .env file, remembering to replace [YOUR-PASSWORD] with the password you provided when you setup the project.

Stripe

This solution uses Stripe for Subscription payments.

  1. Go to Stripe and setup your business (Free Tier is fine to start)
  2. Create 2 products ('Team Plan' and 'Individual Plan') each with a single price and note the Product ID's and Price ID's
  3. Edit the seed.ts file and replace the stripe_product_id values with the Product ID's from 2)
    create: {
      name: 'Team Plan',
      .....
      stripe_product_id: '[Your Product ID from Stripe]'
    },
  1. Edit the Pricing pricing page and put your Price ID's from 2) into the appropriate hidden price_id form fields...
<input type="hidden" name="price_id" value="[Your Price ID from Stripe]" />
  1. go to the API Keys page find 'Secret Key' -> reveal test key. click to copy and then replace the STRIPE_SECRET_KEY value in your .env

  2. install the stripe cli used to forward webhooks (macos)

brew install stripe/stripe-cli/stripe
  1. log the CLI into your stripe account.
stripe login -i

provide the api key found in step 5) above

Setup Database (Prisma)

This solution uses Prisma to both manage changes and connect to the Postgresql database provided by Supabase. Your Supabase DB will be empty by default so you need to hydrate the schema and re-generate the local prisma client.

npx prisma db push
npx prisma generate
npm install @prisma/client --save-dev
npx prisma db seed

...you should now have a a Plan table with 3 rows and a bunch of empty tables in your Supabase DB

Developement Setup

Dependencies

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist

Webhook Forwarding

This makes sure that you can debug subscription workflows locally

stripe listen --forward-to localhost:3000/webhook

If you haven't already done so look at the stripe cli output for this text

Your webhook signing secret is whsec_xxxxxxxxxxxxx (^C to quit)

take ths signing secret and update the STRIPE_ENDPOINT_SECRET value in .env

Start the development server on http://localhost:3000

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Check out the deployment documentation for more information.

Going Live on Netlify

Where you host your SAAS is 100% your problem however :-

  • A quick look at the vue.js discord indicates that netlify has the most mentions (2020) out of all the hosting providers beating out Firebase (1592), Vercel (973) and AWS (740)
  • I was able to get my app up and running with ridiculously little effort

Steps (Assumes your repo is in github)

  1. Go to Netlify

  2. Log in with your github account (it's easier) and create an account (Free Tier is fine for now)

  3. Add a New Site -> Import from Existing Proect

  4. Choose your repo (You might need to Configure the Netlify app on GitHub) - Netlify auto-detects a nuxt app pretty good and the defaults it chooses seem to be fine.

  5. Setup environment variables per the .env_example file (SUPABASE_URL, SUPABASE_KEY....etc)

  6. Optionally change site name (e.g. mycoolsaas) or apply a domain name

  7. Go to Supabase

  8. Choose your project

  9. Go to URL Authentication -> URL Configuration -> Site URL

  10. enter your new netlify URL e.g. https://mycoolsaas.netlify.app/ and click 'save'

  11. Add the following additional redirect URLs for local development and deployment previews:

  1. If you haven't already done so, edit your Supabase Email templates as the generic ones tend to get blocked by GMail.

Netlify deployments and environment variables

Netlify is a bit rubbish at updating environment variables so you may need to manually re-deploy your site in certain situations e.g.

  • If on initial load of the site you get a message along the lines of 'SUPABASE_URL is required'.. but you have set that environment variable correctly... try a manual deployment.
  • Changing the default domain e.g. setting to a custom domain - If you notice you are redirected to the wrong version of the site after signup to a stripe subscription, this means the URL env variable has not been reset by Netlify. a manual deployment may fix it.

To manually redeploy to to your Netlify dashboard and navigate to Deploys -> Trigger Deploy -> Deploy site

supanuxt-saas's People

Contributors

javascriptmick avatar boby900 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.