- Embroider
- Typescript integration (ember-cli-typescript)
- Validations (ember-immer-changeset + yup)
- Tailwindcss 3.x, with primary and secondary colors configured
- Flash messages (ember-cli-flash)
- Tests (ember-test-selectors, ember-cli-page-object)
- Sessions,Login,Logout,... (ember-simple-auth,ember-simple-auth-token)
- Ember data next gen (RequestManager based)
- Ember concurrency
- Test seeding & parallelization (ember-exam)
- dev & test mocking (msw)
- Translations (ember-intl)
- Authorizations (ember-can)
- Pre-made registration flow (login/register/forgot-password)
- VSCODE Ready, all rules are setup for a great developing experience.
- With-backend:
with-backend.js
Starts the ember app with a backend synchronously. - Husky: checks linting + code duplication + integration & unit tests before commiting to VSC.
- A docker image can be found in
images
.
A github workflow CI is provided.
- We have the rule 'ember/no-controllers' activated, so usage of controllers other than for query params is prohibited. Instead, you must create a component in 'pages'. Each component should accept a @model.
Note: Exception for the ApplicationController, needed for an addon.
Translations are located: translations/
- Each component must have his translation file
- A global translation file can be created
- YAML files keys in snake_case
Changesets are located: app/changesets/
Changesets services are located: app/services/changesets
Validations are located: app/validations/
- Each changeset has it's own file and it's own class.
- All changesets comes from
ember-immer-changeset
. It provides full type-checking of changesets. - A changeset can have a service associated that persists the data of a changeset to an endpoint.
Authorizations are located: app/abilities/
.
Components are located: app/components/
.
- Pod structure.
Development mocks are in app/handlers
.
Testing mocks are split in the tests
folders.
git clone git@github.com:TRIPTYK/ember-boilerplate.git
this repositorycd ember-boilerplate
rm -rf .git
git init
pnpm install
pnpm start
- Visit your app at http://localhost:4200.
pnpm test
pnpm lint
pnpm lint:fix
pnpm build --mode=dev
(development)pnpm build
(production)