5 minute quickstart deployment guide

1

Create a private repository

Create a private repository on GitHub, GitLab or Bitbucket to store your project.

2

Push your project to the repository

Push your project to the repository using the following terminal commands:

git remote remove origin # Remove the default origin if you haven't done it already
git remote add origin <your-repository-url>
git add .
git commit -m "Initial commit"
git push -u origin main
3

Deploying your project to the server

You can deploy your project to services like Vercel (my personal suggestion), Netlify, Render, Heroku or self-host it on your own server.

Set up the correct productiom environment variables for your project.

Ensure that AUTH_URL is set to the correct URL (like: example.com) instead of localhost, which your Project is hosted on.

4

Check your Webhooks

After deploying your project, make sure to check if your payment provider webhooks are setup correctly. Please check the Receive Payments guide for more information.

If you want to get featured on the landing page of launch express, please reach out to us here