My template to quickstart a SAAS project
Stop losing time implementing authentication and payment over and over again.
Focus on what brings value to your customers
https://utlimate-saas-js.vercel.app
Check the stripe section of this repo as the steps are very similar
A postgresql db is needed to deploy the app.
You can have a very small instance for free on heroku
# create .env
cp .env.example .env
# install dependencies
yarn
# Launch pgsql and maildev
yarn docker:start
# migrate and seed the database
yarn prisma:migrate:dev
yarn prisma:seed
# install stripe cli
https://stripe.com/docs/webhooks/test
stripe login
stripe listen --forward-to http://localhost:3000/api/stripe/webhook
# start server
yarn dev