blob: bbb21021fb7e15c0e066a0bf66a987fe5ce82ec2 [file] [log] [blame]
ramvermaaf74a622018-07-31 18:25:39 +01001//
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
16A full installation of APEX comes with the following layout.
17
18----
19$APEX_HOME
liamfallona41c8772018-09-05 15:46:31 +010020 ├───bin <1>
21 ├───etc <2>
ramvermaaf74a622018-07-31 18:25:39 +010022 ├───editor
23 ├───hazelcast
24 ├───infinispan
25 └───META-INF
26 ├───examples <3>
27 ├───config <4>
28 ├───docker <5>
29 ├───events <6>
liamfallona41c8772018-09-05 15:46:31 +010030 ├───html <7>
31 ├───models <8>
32 └───scripts <9>
33 ├───lib <10>
34 └───applications <11>
35 └───war <12>
36
ramvermaaf74a622018-07-31 18:25:39 +010037----
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)
liamfallona41c8772018-09-05 15:46:31 +010044<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
ramvermaaf74a622018-07-31 18:25:39 +010050