Getting Started
This short guide will show you how to get started with the boilerplate within a few minutes.
Last updated
This short guide will show you how to get started with the boilerplate within a few minutes.
Last updated
First, you'll need to purchase the eziSaas boilerplate. Visit our purchase page and complete the payment process using our integrated Stripe payment system.
Once your payment is complete, you will receive two important emails:
Email from eziSaas:
This email contains a temporary password for you to log into your mini-dashboard.
Email from GitHub:
This email includes an invitation to join the eziSaas repository as a collaborator (read-only).
Open the email from GitHub and accept the invitation to collaborate on the eziSaas . This will give you access to the boilerplate code. Note that you have 7 days to accept the invitation.
Click on the invitation link in the email.
Log in to your GitHub account (or create one if you don't have one).
Accept the invitation to join the repository.
Now that you have access to the repository, clone it to your local machine to start customizing your SaaS application.
Open your terminal.
Navigate to the directory where you want to clone the repository.
git clone https://github.com/sidaliterkmane/ezisaas.git
Before you can run the application, you need to install the required dependencies.
Run the following command to install the dependencies for both the client and server: npm install
Create a .env
file in the root directory of the project and add the necessary environment variables. You can use the provided .env.example
file as a template. Make sure to include your Stripe API keys and MongoDB connection string.
With everything set up, you can now run the application. Use the following commands to start both the client and server:
Inside the client folder: npm run dev
Inside the server folder: npm start
At this point, your frontend application should be running at http://localhost:5173/
and your backend application at http://localhost:3000/
With the boilerplate up and running, you can start customizing your SaaS application to suit your needs. Explore the codebase, modify the components, and implement your unique features to create a fully functional SaaS application.
That's it! You're now ready to build and launch your micro-SaaS application with eziSaas. Happy coding!
Ensure you have installed on your machine v22.9.0
.