Mario Romano 11894a9769 Dev mromano improveprocess (#1334)
* fix overload activiti

* fix reload tasklist

* fix process variables

* fix default filter

* improve process list

* fix tests process

* fix tests

* Fix test for form

* fix tests

* fix tests

* #fix activiti bug

* #fix activiti bug (reverted from commit c966395ed1087e1dedaf0af0923a89ba99d6ab9f)

* fix tests

* #fix header test bug

* fix tests

* fix process

* fix tests
2016-12-20 09:37:56 +00:00
..
2016-08-02 10:49:34 +01:00
2016-12-20 09:37:56 +00:00
2016-12-19 16:13:07 +00:00
2016-12-16 14:19:23 +00:00
2016-12-15 11:50:01 +00:00
2016-08-02 10:49:34 +01:00
2016-06-03 17:46:29 +01:00
2016-12-16 16:26:42 +00:00
2016-12-06 15:39:22 +00:00
2016-04-22 22:48:14 +01:00
2016-12-16 16:26:42 +00:00
2016-12-12 14:20:12 +00:00
2016-12-06 15:39:22 +00:00
2016-12-06 15:39:22 +00:00
2016-06-30 11:46:37 +02:00

Alfresco Angular 2 Components

alfresco angular2

style

Installing

To correctly use this demo check that on your machine is running Node version 6.9.2 LTS or higher.

npm install

Development build

npm start

This command compiles and starts the project in watch mode. Browser will automatically reload upon changes. Upon start you can navigate to http://localhost:3000 with your preferred browser.

Production build

npm run build

This command builds broject in production mode. All output is placed to dist folder and can be served your preferred web server. You should need no additional files outside the dist folder.

In order to quickly test the output you can use the wsrv tool (lightweight web server):

npm install -g wsrv
wsrv -s -o dist/

Development branch build

If you want to run the demo shell with the latest change from the development branch, use the following command from the /script folder:

./npm-clean.sh
./start-linked.sh -install

Multi-language

To support a new language you need to create your language file (.json) and add it to i18n/ folder.

{
        "username" : "Username",
        "input-required-message": "Required",
        "input-min-message": "Your username needs to be at least 4 characters.",
        "login-button": "Login"
}

Directory structure:

.
├── i18n/
│   ├── en.json
│   ├── it.json
│   └── fr.json