> For the complete documentation index, see [llms.txt](https://dashboard-hero.gitbook.io/dashboard-hero/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dashboard-hero.gitbook.io/dashboard-hero/setting-up/developing-locally.md).

# Developing locally

This section is intended to get you up and running quickly. We explain what's going on behind the scenes [here](/dashboard-hero/project-structure/overview.md).

If you prefer working with Git:

```
git clone https://github.com/dashboard-hero/admin-dashboard-components-lite.git
cd admin-dashboard-components-lite
npm install
npm run dev
```

If you downloaded the folders:

```
cd admin-dashboard-components-lite
npm install
npm run dev
```

**Running the html project with Docker**<br>

**Make sure you have the latest:**

1. **version of docker**
2. **instructions on how to use a .docker file**

`FROM node`\
`RUN mkdir /app`

`WORKDIR /app`\
`CMD npm install; npm run dev --inline --hot --mode=development`<br>

**Run:**\
Clone the adminator repo:

`git clone`[ `https://github.com/puikinsh/Adminator-admin-dashboard.git`](https://github.com/puikinsh/Adminator-admin-dashboard.git)

Then, run the docker image:

docker run -it -v {path-to-adminator-files}:/app -p 3300:3000  adminator npm install<br>

Make sure no process is running on port 3000.<br>
