At Kohactive we develop a lot of Ember.js applications. We found ourselves using the same addons and config files across repos, so we extracted all of that into an addon in order to jump-start new projects.
The generator for this addon does most of the heavy lifting. This is by design, to be transparent about the npm packages and files added.
ember install ember-kohactivated
or
npm install --save-dev ember-kohactivated
ember g ember-kohactivated
active-model-adapter
- We build our APIs in Ruby on Rails with Active Model Serializersember-cli-dotenv
- For managing environment variablesember-cli-flash
- Flash messagesember-cli-mirage
- Factories, fixtures, and stubs for API routesember-cli-sass
- Use scss pre-processorember-data-has-many-query
- Add query params to an asynchasMany
API callember-get-config
- Easier access to app config varsember-lodash
- Lodash. For Ember.ember-moment
- Time and data display, parsing, and mathingember-simple-auth
- Authentication with APIember-truth-helpers
- Simple logic in templates
ember-bootstrap
- Bootstrap CSS frameworkember-cli-cloudinary
- Cloudinary image manipulation and uploader
git clone <repository-url>
cd ember-kohactivated
npm install
npm run lint:hbs
npm run lint:js
npm run lint:js -- --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versions
ember serve
- Visit the dummy application at http://localhost:4200.
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.