> ## Documentation Index
> Fetch the complete documentation index at: https://docs.theme.eslot.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Environment Setup

### Install Dependencies

* **Installing Node js**

  <Tip>
    Recommended link is here – [<u>https://nodejs.org/en/download</u>](https://nodejs.org/en/download)
  </Tip>
* **Installing NPM**

  <Tip>
    You can check the official documentation – [https://docs.npmjs.com/downloading-and-installing-node-js-and-npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
  </Tip>

  **To download the latest version of npm, run the following command on the command line:**

  ```shellscript theme={"dark"}
  sudo apt install -g npm
  ```
* \*\*Installing Yarn \*\*

  <Tip>
    You can check the official documentation -[https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable](https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable)
  </Tip>

  ```shellscript theme={"dark"}
  npm install --global yarn
  ```

After extracting the theme source code, navigate to the project directory and install dependencies:

```shellscript theme={"dark"}
npm install
# or
yarn install
```

### **Run Development Server**

```shellscript theme={"dark"}
npm run dev -p 3001
```
