Skip to content
Elmar Dott edited this page Feb 16, 2018 · 2 revisions

Configuration Management

[Documentation: Architecture; Build Management]

The build workflow contains a release Profile. This profile includes several steps for the creation of released Artifacts. The build will stop in the case any test fail or an SNAPSHOT Artifact is as dependency included. Also the debugging for the compiler is deactivated and optimization is enabled. for Web Archives a CSS and JavaScript compressor is active to optimize load times of HTML Pages. The step is finished after singing the artifact with a cryptographic key, to show his originality.

The database system (DBMS) of our choice is PostgeSQL, although the together platform handle the most common DBMS like MySQL or DB2. During the software development lifecycle is the docker postgres community build container the installation where the together platform is operating. To get the container type the command: docker pull postgres. The container can be executed with the command: docker run -p5432:5432 -v /home/<USER_DIR>/docker/postgreSQL:/var/lib/postgresql/data postgres. The together platform deals with two schemata, together and together-test. For both schemata is the default user together with the password together configured.

Clone this wiki locally