Ember Flexberry Addon - Flexberry ORM SPA UI Framework powered by Ember.js.
- Latest release:
ember install ember-flexberry
- Specific version:
ember install [email protected]
- Latest commit from a branch:
ember install flexberry/ember-flexberry#<BRANCH_NAME>
- Specific commit:
ember install flexberry/ember-flexberry#<COMMIT_SHA>
- Common Flexberry PLATFORM documentation site: https://flexberry.github.io
- Auto-generated documentation under
master
branch: https://flexberry.github.io/master - Auto-generated documentation under
develop
branch: https://flexberry.github.io/develop
Ember Flexberry comes with a dummy app that covers functionality of the addon.
- Stable version (master branch): http://flexberry.github.io/ember-flexberry/dummy/master/
- Bleeding edge version (develop branch): http://flexberry.github.io/ember-flexberry/dummy/develop/
- For temporal testing: http://flexberry.github.io/ember-flexberry/dummy/dummy-test/
Information on how to contribute to the project you can find here.
You will need the following things properly installed on your computer.
- Git
- Node.js (v10.*) (with NPM)
- Bower
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd ember-flexberry
yarn install
bower install
Ember Flexberry comes with a dummy app that covers functionality of the addon.
ember serve
- Visit your app at http://localhost:4200.
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
yarn lint:js
yarn lint:js --fix
npm run lint
- run all lintersnpm run lint:js
- run linter for codenpm run lint:hbs
- run linter for templatesnpx update-todo-errors
- update list of todo errors
ember build
(development)ember build --environment production
(production)
- Merge current release branch with master branch
git checkout master
git merge --no-ff <release-branch>
git push origin master
ember release
(for more information visit ember-cli-release)- To increment patch version run without specifying options.
- To increment minor version run with
--minor
option. - To increment major version run with
--major
option.
npm publish ./
(for more information visit How to publish packages to NPM)- Merge master branch that contains additional commit for changing addon version with develop branch using current release branch as intermediary
git checkout <release-branch>
git merge --no-ff master
git push origin <release-branch>
git checkout develop
git merge --no-ff <release-branch>
git push origin develop
- Delete current release branch on GitHub
- Document your code using YUIDoc Syntax Reference. For examples, you can look at the documented code in the ember.js repository.
- After pushing into master or develop branch, documentation will be automatically generated and updated in Flexberry/Documentation repository, which is available via https://flexberry.github.io.
- For testing and generating documentation by hands use YUIDoc.
This project is licensed under the MIT License.