Skip to content

Latest commit

 

History

History
97 lines (54 loc) · 5.26 KB

preparing-environment.md

File metadata and controls

97 lines (54 loc) · 5.26 KB
Title Level
Preparing the development environment
Beginner

Preparing the development environment

Here you will find the prerequisites for all the tutorials and descriptions of the entire documentation.

This document contains the development environment description, along with the details of the suggested versions for each tool, library and module.

Node.js

Node.js is a JavaScript runtime built using an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js uses npm as a public registry and package system.

You need the latest node.js from either the 8.x or 9.x branch. To check the version, run the following command in a terminal.

node -v

Angular CLI

Angular CLI is a tool to initialize, develop, scaffold and maintain Angular applications

Version 1.6.6 seems to be the most stable version currently. Earlier and later versions have issues regarding @angular/devkit-core.

If you already have Angular CLI installed check the version by running:

ng --version

To globally install Angular CLI version globally 1.6.6 run:

sudo npm install -g @angular/[email protected]

Code Editor

We recommend Visual Studio Code - it's a free, lightweight and very powerful tool from Microsoft that works well for Angular development.

Alfresco Content Services (optional)

If you want to develop on top of the Alfresco Content Services, you might want to install it using the Alfresco Content Services Community Deployment project on GitHub.

We suggest to follow the instructions related to the Docker deployment, considering that you are working on a development environment.

Please note that you might want to deploy and use Alfresco Content Services Enterprise Edition instead. In this case you can use the Alfresco Content Services Deployment project on GitHub.

Alfresco Process Services (optional)

If you want to develop on top of the Alfresco Process Services, you might want to install it as described in the official documentation.

Please note that ADF applications are compatible with Alfresco Process Services powered by Activiti and not with Activiti yet.

ADF Yeoman generator (optional)

You can check if you have Yeoman installed by running yo --version. If this is not in your system then you can install it by running:

sudo npm install -g yo

(The sudo command is not required on Windows but you may need to ensure you are running a command prompt with Administrator privileges).

Install the latest version of the generator-alfresco-adf-app using the following command.

sudo npm install -g generator-alfresco-adf-app

If you have an earlier version of the generator installed then it usually a good idea to uninstall it before reinstalling the latest version. This is especially true if you installed the generator packages before ADF 2.0 because the packages were renamed for this version.

Uninstall previous versions with:

sudo npm uninstall generator-alfresco-adf-app

...for versions after ADF 2.0 and:

sudo npm uninstall generator-ng2-alfresco-app

...for versions before ADF 2.0.

Alfresco Example Content Application (optional)

In some tutorials you might be required to use the Alfresco Example Content Application available in a public repository on GitHub named alfresco-content-app. The Alfresco Example Content Application is an example application that is used as a starting point for development.

The Alfresco Example Content Application requires an instance of Alfresco Content Services up and running, to work properly. If you don't have it already, follow the instructions above in the Alfresco Content Services (optional) paragraph.

To make the Alfresco Example Content Application work in your development environment, clone the alfresco-content-app GitHub repository using the following command in a terminal.

git clone https://github.com/Alfresco/alfresco-content-app

Once completed, edit the proxy.conf.js file into the root of the project and change the target property according to the Alfresco Content Services instance. Below is the setup if you are using the Alfresco Content Services Community Deployment project on GitHub.

module.exports = {
    "/alfresco": {
        "target": "http://0.0.0.0:8082",
        ...
    }
};

Once done, open a terminal and move into the alfresco-content-app folder and run npm install. Then run npm start and the application will be served on port 4200, at the url http://localhost:4200.