Is a template that Ember projects can be started from with all development and production setup built in.
git clone https://github.com/Machine-Translation/Ember-templatedocker-compose up --builddocker-compose run --service-ports web /bin/sh(Inside container) yarn installexit(get out of container)
docker-compose up- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
- To run any ember-cli commands, lint commands, or yarn commands, you must be inside docker container
Make use of the many generators for code, try ember help generate, or ember g --help for more details
ember testember test --server
npm run lint:hbsnpm run lint:jsnpm run lint:js -- --fix
ember build(development)ember build --environment production(production)
Will come later...