Skip to content

Latest commit

 

History

History
68 lines (44 loc) · 1.97 KB

README.md

File metadata and controls

68 lines (44 loc) · 1.97 KB

Just another Angular Dashboard

Build Status Codacy Badge Coverage Status Dependencies Join the chat at https://gitter.im/Drathal/angular-webpack-dashboard

A little frontend to play around with:

  • ES6
  • angular 1.x
  • material design
  • webpack
  • component driven frontend
  • docker

requirements

install

git clone https://github.com/Drathal/angular-webpack-dashboard.git
cd angular-webpack-dashboard
npm install

build & start

production

npm run build
npm run start

Open in Browser at: localhost:8888

development

npm run build:dev

Open in Browser at: localhost:8080

tests

run unit tests once

npm run test

listen for changes and rerun tests

npn run test:dev

docker

build image

docker build -t dashboard .

run container

docker run -p 8888:8888 -t dashboard

FAQ

Where can i change the port for the dev server?

You chan change the port variable, inside webpack/webpack.make.js.

Where can i change the port for the production server?

You chan change the port variable, inside server.js.