Developing locally

This section is intended to get you up and running quickly. We explain what's going on behind the scenes here.

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

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

Run: Clone the adminator repo:

git clone 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

Make sure no process is running on port 3000.

Last updated

Was this helpful?