-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into anchor-809-6
- Loading branch information
Showing
21 changed files
with
194 additions
and
134 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
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
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,25 +1,23 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Test Profile: deployment" type="JetRunConfigurationType" folderName="Run Test Profile"> | ||
<envs> | ||
<env name="app.enableTest" value="true" /> | ||
<env name="TEST_PROFILE_NAME" value="deployment" /> | ||
<env name="KT_REFERENCE_SERVER_CONFIG" value="service-runner/src/main/resources/config/reference-config.yaml" /> | ||
</envs> | ||
<option name="MAIN_CLASS_NAME" value="org.stellar.anchor.platform.run_profiles.RunTestProfile" /> | ||
<module name="java-stellar-anchor-sdk.service-runner.main" /> | ||
<shortenClasspath name="ARGS_FILE" /> | ||
<extension name="net.ashald.envfile"> | ||
<option name="IS_ENABLED" value="false" /> | ||
<option name="IS_SUBST" value="false" /> | ||
<option name="IS_PATH_MACRO_SUPPORTED" value="false" /> | ||
<option name="IS_IGNORE_MISSING_FILES" value="false" /> | ||
<option name="IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value="false" /> | ||
<ENTRIES> | ||
<ENTRY IS_ENABLED="true" PARSER="runconfig" IS_EXECUTABLE="false" /> | ||
</ENTRIES> | ||
</extension> | ||
<method v="2"> | ||
<option name="Make" enabled="true" /> | ||
</method> | ||
</configuration> | ||
<configuration default="false" name="Test Profile: deployment" type="JetRunConfigurationType" folderName="Run Test Profile"> | ||
<envs> | ||
<env name="TEST_PROFILE_NAME" value="deployment" /> | ||
</envs> | ||
<option name="MAIN_CLASS_NAME" value="org.stellar.anchor.platform.run_profiles.RunTestProfile" /> | ||
<module name="java-stellar-anchor-sdk.service-runner.main" /> | ||
<shortenClasspath name="ARGS_FILE" /> | ||
<extension name="net.ashald.envfile"> | ||
<option name="IS_ENABLED" value="false" /> | ||
<option name="IS_SUBST" value="false" /> | ||
<option name="IS_PATH_MACRO_SUPPORTED" value="false" /> | ||
<option name="IS_IGNORE_MISSING_FILES" value="false" /> | ||
<option name="IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value="false" /> | ||
<ENTRIES> | ||
<ENTRY IS_ENABLED="true" PARSER="runconfig" IS_EXECUTABLE="false" /> | ||
</ENTRIES> | ||
</extension> | ||
<method v="2"> | ||
<option name="Make" enabled="true" /> | ||
</method> | ||
</configuration> | ||
</component> |
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
services: | ||
v2-stable-servers: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: dev-servers | ||
image: stellar/anchor-platform:2.11.2 | ||
profiles: | ||
- 'v2-stable' | ||
labels: | ||
description: | | ||
Runs all of the Anchor Platform services for the v2 stable release. | ||
To start the services: `docker-compose --profile v2-stable up` | ||
maintainer: "[email protected]" | ||
|
||
stable-servers: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: dev-servers | ||
image: stellar/anchor-platform:latest | ||
profiles: | ||
- 'latest' | ||
labels: | ||
description: | | ||
Runs all of the Anchor Platform services for the latest release. | ||
To start the services: `docker-compose --profile latest up` | ||
maintainer: "[email protected]" | ||
|
||
local-built-servers: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: dev-servers | ||
image: stellar/anchor-platform:local | ||
profiles: | ||
- 'local' | ||
labels: | ||
description: | | ||
Runs all of the Anchor Platform services from the locally built image. | ||
To start the services: `docker-compose --profile local up` | ||
maintainer: "[email protected]" | ||
|
||
platform: | ||
profiles: | ||
- '' | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: platform | ||
depends_on: | ||
- db | ||
- kafka | ||
- reference-server | ||
- sep24-reference-ui | ||
|
||
observer: | ||
profiles: | ||
- '' | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: observer | ||
depends_on: | ||
- db | ||
- kafka | ||
|
||
reference-server: | ||
profiles: | ||
- '' | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: reference-server | ||
depends_on: | ||
- reference-db | ||
|
||
sep24-reference-ui: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: sep24-reference-ui | ||
|
||
kafka: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: kafka | ||
|
||
db: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: db | ||
|
||
reference-db: | ||
extends: | ||
file: service-runner/src/main/resources/common/docker-compose.yaml | ||
service: reference-db |
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
Oops, something went wrong.