Getting Started with CreativeRez SaaS Boilerplate

Welcome to the CreativeRez SaaS Boilerplate! This guide will help you get up and running with your new SaaS project.

Prerequisites

Before you begin, make sure you have the following installed:

  • Node.js (v14 or later)
  • pnpm

Installation

  1. Clone the repository:
git clone https://github.com/yourusername/creativerez-saas-boilerplate.git
cd creativerez-saas-boilerplate
  1. Install dependencies:
pnpm install
  1. Set up environment variables:

    • Copy the .env.example file to .env
    • Open the .env file and fill in your actual values for each variable
  2. Start the development server:

pnpm dev
  1. Open your browser and navigate to http://localhost:5173 to see your application running.

Next Steps

Now that you have your boilerplate set up, you can start building your SaaS application. Check out the Features page to learn more about what’s included in this boilerplate, and the Configuration page for details on how to customize your application.