diff options
author | vempo <vitaliy.emporopulo@amdocs.com> | 2018-07-24 17:34:04 +0300 |
---|---|---|
committer | vempo <vitaliy.emporopulo@amdocs.com> | 2018-07-25 11:39:10 +0300 |
commit | a52d50e788792a63e97a9176ab319d53db7a2853 (patch) | |
tree | b1c2222cacf4b8192aea16d1e0315b1f005c5347 /deprecated-workflow-designer/sdc-workflow-designer-ui/README.md | |
parent | 3c2665debb400aef7f0ed9e235698d2ff9f859db (diff) |
Replaced old implementation at root
Old project files and directories has been moved
under 'deprecated-workflow-designer'. The old project
is not built by the CI anymore, but can be still built manually.
New modules/directories have been moved up and integrated with
the CI system.
Change-Id: I1528c792bcbcce9e50bfc294a1328a20e72c91cf
Issue-ID: SDC-1559
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'deprecated-workflow-designer/sdc-workflow-designer-ui/README.md')
-rw-r--r-- | deprecated-workflow-designer/sdc-workflow-designer-ui/README.md | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/deprecated-workflow-designer/sdc-workflow-designer-ui/README.md b/deprecated-workflow-designer/sdc-workflow-designer-ui/README.md new file mode 100644 index 00000000..88859be5 --- /dev/null +++ b/deprecated-workflow-designer/sdc-workflow-designer-ui/README.md @@ -0,0 +1,57 @@ + +# Workflow Modeler + +This project is an implementation of a workflow modeler for creating and maintaining [TOSCA] compatible management plans. + +It is based on the thesis [Ein Modellierungswerkzeug für BPMN4TOSCA] by Thomas Michelbach. + +## Installation + + Fetch dependencies using `npm install` + +## Run + +Execute `npm start`. +Open <http://localhost:9527/> with correct HTTP GET params: + +repositoryURL (e.g. http://dev.winery.opentosca.org/winery/) +namespace (e.g. http://www.example.org/ServiceTemplates) +id (e.g. PlanDemonstration) +plan (e.g. Test) + +You can also directly embed it into Winery. +Ensure that `winery.properties` contains following line. + +``` +bpmn4toscamodelerBaseURI=http://localhost:9527/ +``` + +## License +Copyright (c) 2017 ZTE Corporation. + +All rights reserved. This program and the accompanying materials +are made available under the terms of the [Eclipse Public License v1.0] +and the [Apache License v2.0] which both accompany this distribution, +and are available at http://www.eclipse.org/legal/epl-v10.html +and http://www.apache.org/licenses/LICENSE-2.0. + +Please check the [EPL FAQ](https://eclipse.org/legal/eplfaq.php#DUALLIC) for implications. + + [Apache License v2.0]: http://www.apache.org/licenses/LICENSE-2.0.html + [Eclipse Public License v1.0]: http://www.eclipse.org/legal/epl-v10.html + + +## Literature + +### About TOSCA +* Binz, T., Breiter, G., Leymann, F., Spatzier, T.: Portable Cloud Services Using TOSCA. IEEE Internet Computing 16(03), 80--85 (May 2012). [DOI:10.1109/MIC.2012.43] +* Topology and Orchestration Specification for Cloud Applications Version 1.0. 25 November 2013. OASIS Standard. http://docs.oasis-open.org/tosca/TOSCA/v1.0/os/TOSCA-v1.0-os.html +* OASIS: Topology and Orchestration Specification for Cloud Applications (TOSCA) Primer Version 1.0 (2013) + +See http://www.opentosca.org/#publications for a list of publications in the OpenTOSCA ecosystem. + + [Apache License v2.0]: http://www.apache.org/licenses/LICENSE-2.0.html + [DOI:10.1109/MIC.2012.43]: http://dx.doi.org/10.1109/MIC.2012.43 + [Eclipse Public License v1.0]: http://www.eclipse.org/legal/epl-v10.html + [Ein Modellierungswerkzeug für BPMN4TOSCA]: http://elib.uni-stuttgart.de/opus/volltexte/2015/9943/ + [TOSCA]: https://www.oasis-open.org/committees/tosca/ |