-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.1.0.release' ci_latest
- Loading branch information
Showing
267 changed files
with
3,856 additions
and
2,914 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.0.0.RELEASE | ||
2.1.0.RELEASE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...onfig/src/main/java/org/lfenergy/operatorfabric/businessconfig/model/TypeOfStateEnum.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* Copyright (c) 2018-2021, RTE (http://www.rte-france.com) | ||
* See AUTHORS.txt | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* SPDX-License-Identifier: MPL-2.0 | ||
* This file is part of the OperatorFabric project. | ||
*/ | ||
|
||
package org.lfenergy.operatorfabric.businessconfig.model; | ||
|
||
/** | ||
* Type of state | ||
* <dl> | ||
* <dt>INPROGRESS</dt><dd>In progress</dd> | ||
* <dt>FINISHED</dt><dd>Finished</dd> | ||
* <dt>CANCELED</dt><dd>Canceled</dd> | ||
* </dl> | ||
* Note : This enum is created by hand because Swagger can't handle enums. It should match the corresponding | ||
* enum definition in the Cards API. | ||
* | ||
* | ||
*/ | ||
public enum TypeOfStateEnum { | ||
INPROGRESS, FINISHED, CANCELED | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
#!/bin/bash | ||
|
||
echo "Usage: " | ||
echo " 1: ./docker-compose.sh" | ||
echo " 2: ./docker-compose.sh <pathToExternalEnvironmentFile>" | ||
|
||
echo USER_ID="$(id -u)" > .env | ||
echo USER_GID="$(id -g)" >> .env | ||
# create directory for bundle storage if not existing | ||
mkdir -p businessconfig-storage | ||
if [ "$#" -eq 0 ]; then | ||
echo CONFIG_PATH=./ >> .env | ||
echo SPRING_PROFILES_ACTIVE=docker >> .env | ||
else | ||
EXTERNAL_CONFIGURATION_FILE=$1 | ||
CONFIG_PATH=$(dirname "$1") | ||
cat ${EXTERNAL_CONFIGURATION_FILE} >> .env | ||
echo CONFIG_PATH="$CONFIG_PATH" >> .env | ||
fi | ||
cat .env | ||
docker-compose up -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.