> For the complete documentation index, see [llms.txt](https://zakariaes-organization.gitbook.io/saascore-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zakariaes-organization.gitbook.io/saascore-docs/get-started.md).

# Get Started

Get started in 5 minutes

Welcome to SaasCore, the NextJS boilerplate to launch your product in days.

SaasCore code is on GitHub, so start by cloning the repo.

```bash
git clone https://github.com/CodeZak/saascore.git
```

```bash
cd saascore # enter the saascore folder 
git remote remove origin # remove the remote origin
cp .env.example .env # copy the env file
npm i # install the dependencies
npm run dev # start the local next.js server
```

At this point, your product is running at [`http://localhost:3000`](http://localhost:3000/)

Point your browser to that page, and see it in action! 🚀

Pretty exciting, right?!

### Configuration <a href="#configuration" id="configuration"></a>

Check the [Configuration ](https://docs.nextsaas.io/get_started/configuration)page to configure your web app (mandatory for most of the features).

### NodeJS Version <a href="#nodejs-version" id="nodejs-version"></a>

To correctly run Shipped, you need to use a version of NodeJS 20.11.1

To enforce it, the repository includes a `.nvmrc` file.

NVM is a Node Version Manager that you can download [here](https://github.com/nvm-sh/nvm).

To activate the correct NodeJS version, go to the Shipped folder and run

```
nvm install 20.11.1
nvm use
```

Install the [script to automatically switch nodejs version](https://github.com/nvm-sh/nvm#calling-nvm-use-automatically-in-a-directory-with-a-nvmrc-file) when you move to a folder with a `.nvmrc` file


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://zakariaes-organization.gitbook.io/saascore-docs/get-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
