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:
If you downloaded the folders:
Running the html project with Docker
Make sure you have the latest:
version of docker
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?