Dashboard Hero
  • Scope
  • Introduction
    • Meet and greet
    • Requirements(tech)
    • Requirements(user)
  • Setting up
    • Developing locally
    • Deploying
  • Basics
    • Scss
    • Javascript
    • Svelte framework
    • vs React vs Angular vs vue.js
    • Rollup(and rollup.config.js)
    • NPM(and package.json)
  • Project structure
    • Overview
    • Git version
    • Folder version
  • Architecture
    • DRY vs WET programming
    • Basic
    • Extended
  • Components
    • Component lifecycle
    • Passing data between components
    • Buttons
    • Charts
    • Grids
    • Search bars
    • Other inputs
    • Dialogs
    • Dropdowns
    • Gauges
    • User management pages
  • Backend
    • Firebase cloud functions
  • Data sources
    • Firebase
    • MongoDB
    • *SQL sources
    • GraphQL
  • User management
    • Log in
    • Register
    • Forgot pass
    • Custom flows
    • Others
  • State control
    • Redux
    • MobX
    • Saga
  • Dashboard: a full project
    • Overview
    • Layout
    • Routing
    • Removing/adding pages
    • Deploying
  • Roadmap/tutorial
    • Introduction - building your own app
    • 1. UI - HTML&CSS
    • 2. Data sources(+testing)
    • 3. Defining and using existing components
    • 4. User management
    • 5. Go live!
  • Troubleshooting
    • Can't run the project
Powered by GitBook
On this page

Was this helpful?

  1. Setting up

Developing locally

PreviousRequirements(user)NextDeploying

Last updated 5 years ago

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:

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

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.

here
https://github.com/puikinsh/Adminator-admin-dashboard.git