ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 1 | // |
| 2 | // ============LICENSE_START======================================================= |
| 3 | // Copyright (C) 2016-2018 Ericsson. All rights reserved. |
| 4 | // ================================================================================ |
| 5 | // This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE |
| 6 | // Full license text at https://creativecommons.org/licenses/by/4.0/legalcode |
| 7 | // |
| 8 | // SPDX-License-Identifier: CC-BY-4.0 |
| 9 | // ============LICENSE_END========================================================= |
| 10 | // |
| 11 | // @author Sven van der Meer (sven.van.der.meer@ericsson.com) |
| 12 | // |
| 13 | |
| 14 | == Installation Layout |
| 15 | |
| 16 | A full installation of APEX comes with the following layout. |
| 17 | |
| 18 | ---- |
| 19 | $APEX_HOME |
liamfallon | a41c877 | 2018-09-05 15:46:31 +0100 | [diff] [blame^] | 20 | ├───bin <1> |
| 21 | ├───etc <2> |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 22 | │ ├───editor |
| 23 | │ ├───hazelcast |
| 24 | │ ├───infinispan |
| 25 | │ └───META-INF |
| 26 | ├───examples <3> |
| 27 | │ ├───config <4> |
| 28 | │ ├───docker <5> |
| 29 | │ ├───events <6> |
liamfallon | a41c877 | 2018-09-05 15:46:31 +0100 | [diff] [blame^] | 30 | │ ├───html <7> |
| 31 | │ ├───models <8> |
| 32 | │ └───scripts <9> |
| 33 | ├───lib <10> |
| 34 | │ └───applications <11> |
| 35 | └───war <12> |
| 36 | |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 37 | ---- |
| 38 | <1> binaries, mainly scripts (bash and bat) to start the APEX engine and applications |
| 39 | <2> configuration files, such as logback (logging) and third party library configurations |
| 40 | <3> example policy models to get started |
| 41 | <4> configurations for the examples (with sub directories for individual examples) |
| 42 | <5> Docker files and additional Docker instructions for the exampples |
| 43 | <6> example events for the examples (with sub directories for individual examples) |
liamfallon | a41c877 | 2018-09-05 15:46:31 +0100 | [diff] [blame^] | 44 | <7> HTML files for some examples, e.g. the Decisionmaker example |
| 45 | <8> the policy models, generated for each example (with sub directories for individual examples) |
| 46 | <9> additional scripts for the examples (with sub directories for individual examples) |
| 47 | <10> the library folder with all Java JAR files |
| 48 | <11> applications, also known as jar with dependencies (or fat jars), individually deployable |
| 49 | <12> WAR files for web applications |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 50 | |