Quick Start

Follow this guide to set up your project locally. For production setup, refer to the deployment guide.


Local Setup Instructions

  1. Clone the Project After receiving the email with project details, clone the repository to your local machine.

  2. Install Dependencies Inside the project directory, run the following commands:

    npm install --force
    
  3. Set Up Environment Variables

    • Rename the .env.example file in the root directory to .env.
    • Fill in the required fields. Refer to the environment variables guide for details.
    • Required variables: Customization, Authentication, and Database fields.
    • The rest of the variables are optional and specific to certain features.
  4. Start the Development Server With the setup complete, start your development server by running:

    npm run dev
    

    Visit http://localhost:3000 (or the port where the server started) to test your setup.


Demo

Want to see FastStartup in action? Check out the live demo at https://demo.faststartup.dev.


With these steps, your local setup should be good to go.