Developing locally
Last updated
Was this helpful?
Last updated
Was this helpful?
This section is intended to get you up and running quickly. We explain what's going on behind the scenes .
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
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.