generator-ng2-alfresco-app
v2.0.0
Published
ADF application generator for Yeoman
Downloads
12
Readme
ADF application generator for Yeoman
Yeoman generator generating a ADF Angular Alfresco App scaffold
Introduction
See the following page for an introduction to the Alfresco Application Development Framework.
Prerequisites
Before you start using this development framework and the generator, make sure you have installed all required software and done all the necessary configuration, see this page.
Installing Yeoman and the App Generator
First, install Yeoman:
npm install -g yo
Then the Alfresco Application Generator:
npm install -g generator-ng2-alfresco-app
Generating a new application project
First, move in the folder where you want create your project.
yo ng2-alfresco-app
You will need to run the following scripts in the generated folder:
npm install
npm start
Commands above install all project dependencies, start the project and watch for changes.
Alternatively you can use generator with install switch to trigger automatic installation of dependencies via npm install script:
yo ng2-alfresco-app --install
Updating generator
npm update -g generator-ng2-alfresco-app
Getting current version
- Show current version generator-ng2-alfresco-app installed
yo ng2-alfresco-app --version
Contributing to the generator
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Make some changes
- Add the changes to the index:
git add .
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
to Contribute to the existing code base Add test cases to cover the new behaviour, and make sure all the existing tests are still green.
To test the generator:
npm test
Extending the blueprints
In order to add a new blueprint just put the project template to the app/templates
folder.
Requirements for new projects:
- must contain
package.json
file - the
package.json
file must contain at leastname
andversion
attributes
Debugging generator
# OS X / Linux
DEBUG=yeoman:generator yo ng2-alfresco-app
# Windows
set DEBUG=yeoman:generator & yo ng2-alfresco-app
More on debugging generators.
History
For detailed changelog, see Releases.