generator-alfresco-adf-app v6.1.1
ADF application generator for Yeoman
An extension for the Yeoman generator to create minimal Alfresco ADF applications.
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 Node.js and NPM
Install the LTS (Long-Term Support) version of the Node.js: https://nodejs.org/en/download/
MacOS
You can use the official macOS installer from the https://nodejs.org/en/download/ page, it includes the NPM as well.
Ubuntu
Use this article to get details on how to install Node.js and NPM on Ubuntu: https://linuxize.com/post/how-to-install-node-js-on-ubuntu-20-04/
It is important to install the developer tools:
sudo apt install build-essentialCentOS
Use this article to get details on how to install Node.js and NPM on CentOS: https://linuxize.com/post/how-to-install-node-js-on-centos-7/
It is important to install the developer tools:
sudo yum install gcc-c++ makeInstalling Yeoman
First, install the Yeoman tool:
npm install -g yoInstalling the App Generator
Use the following command to install the Alfresco App Generator for the Yeoman:
npm install -g generator-alfresco-adf-appTo install a specific version, use @ followed by the version.
npm install -g generator-alfresco-adf-app@WHERSION_YOU_WANTSome tags in the project may not be available in npm. See available versions for npm
Generating a New Application Project
First, move in the folder where you want create your project.
yo alfresco-adf-appYou will need to run the following scripts in the generated folder:
npm install
npm startCommands 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 alfresco-adf-app --installActiviti 7
For the projects running with Activiti 7 you need to update the app.config.json with the list of the apps to use.
For example:
{
"alfresco-deployed-apps" : [{"name": "simple-app"}]
}For more information about the app list component refer to the documentation
Using from the Command Line
You can use the generator in the unattended mode by providing all necessary options from the command line:
yo ng2-alfresco-app -n app2 -b adf-cli-aps-template -iOptions:
| Name | Alias | Type | Description |
|---|---|---|---|
| --name=\ | -n \ | string | Application name |
| --blueprint=\ | -b \ | string | Blueprint name |
| --install | -i | boolean | Install dependencies upon generation |
Default blueprint names:
- adf-cli-acs-aps-template
- adf-cli-acs-template
- adf-cli-aps-template
Updating Generator
npm update -g generator-alfresco-adf-appGetting Current Version
Show current version generator-alfresco-adf-app installed
npm ls -g generator-alfresco-adf-appContributing 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 testTo scaffold app from local changes:
yo <cloned project path>Example
yo ../generator-alfresco-adf-app # this generates from the local changesExtending 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.jsonfile - the
package.jsonfile must contain at leastnameandversionattributes
Debugging Generator
# OS X / Linux
DEBUG=yeoman:generator yo alfresco-adf-app
# Windows
set DEBUG=yeoman:generator & yo alfresco-adf-appMore on debugging generators.
History
For detailed changelog, see Releases.
License
2 years ago
2 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago