This project is based on the official Angular 2 quickstart.
Major adjustments:
- Awesome Docker support (i.e runs
unit
ande2e
tests inside aselenium container
) - Awesome folder structure (i.e
dist
,stylesheets
) - Awesome application of the DRY, YAGNI and KISS principles
- Awesome refactor so the whole project can be easily renamed, just find by
angular-quickstart
;) - Removes
Wallaby
(because it is a paid service)
docker-compose up --build -d
to access the application:
http://localhost:3000
to access the Browser Sync:
http://localhost:3001
to run e2e
tests:
docker-compose exec angular-quickstart-dev npm run e2e
to run spec
tests:
docker-compose exec angular-quickstart-dev npm run test-once