From 8d8a5db25c4a36d48fe3a65971617a477399322d Mon Sep 17 00:00:00 2001 From: Wade Barnes Date: Mon, 4 Dec 2023 13:57:32 -0800 Subject: [PATCH] Switch to using BCovrin Test as the ledger for integration tests. Signed-off-by: Wade Barnes --- README.md | 14 +++++++------- basicmessage_storage/docker/default.yml | 2 +- basicmessage_storage/docker/integration.yml | 2 +- connection_update/docker/default.yml | 2 +- connection_update/docker/integration.yml | 2 +- multitenant_provider/docker/default.yml | 2 +- multitenant_provider/docker/integration.yml | 2 +- plugin_globals/docker/default.yml | 2 +- plugin_globals/docker/integration.yml | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 40eca1a27..889646da6 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,14 @@ IMPORTANT: docker-in-docker can be a little flaky, so if you encounter a message ## Repo Management Script -A script was developed to help with maitenance of the repo called `repo_manager.py`. To run it you need a current version of poetry and python available. -Run `python repo_manager.py` and you will be met with 3 options. - - (1) Is used for starting or adding a new plugin. It will generate all the common scaffolding for a plugin which has the expected format. - - (2) Is used for updating and changing common poetry dependencies and configurations. It takes the poetry sections in the `pyproject.toml` files from the `plugin_globals` directory and combines them with the local plugin poetry sections. For the dependencies the common will be overridden by the globals. The other config sections will be replaced by the global configs. Then the lock files will be removed and re-installed. +A script was developed to help with maitenance of the repo called `repo_manager.py`. To run it you need a current version of poetry and python available. +Run `python repo_manager.py` and you will be met with 3 options. + - (1) Is used for starting or adding a new plugin. It will generate all the common scaffolding for a plugin which has the expected format. + - (2) Is used for updating and changing common poetry dependencies and configurations. It takes the poetry sections in the `pyproject.toml` files from the `plugin_globals` directory and combines them with the local plugin poetry sections. For the dependencies the common will be overridden by the globals. The other config sections will be replaced by the global configs. Then the lock files will be removed and re-installed. - (3) Will take common development files like the `.devcontainer` directory from the globals and replace and tag the files. Using this you can make chages to every plugins development files from only editing them in one place. - IMPORTANT: This script processes the `pyproject.toml` sections by empty lines. Please do not have unnessecary empty lines between sections. - + IMPORTANT: This script processes the `pyproject.toml` sections by empty lines. Please do not have unnessecary empty lines between sections. + ## Plugin Documentation The development team should describe what the plugin does, any limitations (ex only in multitenant mode), any known issues interacting with other plugins, etc. Full documentation including a plugin_config sample should be provided. @@ -89,7 +89,7 @@ inbound-transport: outbound-transport: http endpoint: http://host.docker.internal:9060 -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis emit-new-didcomm-prefix: true wallet-type: askar diff --git a/basicmessage_storage/docker/default.yml b/basicmessage_storage/docker/default.yml index d5ad7aba9..06459c06e 100644 --- a/basicmessage_storage/docker/default.yml +++ b/basicmessage_storage/docker/default.yml @@ -18,7 +18,7 @@ plugin: - basicmessage_storage.v1_0 #config -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis # Multi-tenancy multitenant: true diff --git a/basicmessage_storage/docker/integration.yml b/basicmessage_storage/docker/integration.yml index 8eb5453bb..87fd2e6c5 100644 --- a/basicmessage_storage/docker/integration.yml +++ b/basicmessage_storage/docker/integration.yml @@ -17,7 +17,7 @@ plugin: - basicmessage_storage.v1_0 #config -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis log-level: info diff --git a/connection_update/docker/default.yml b/connection_update/docker/default.yml index 1ab1fe531..00e4e8e0b 100644 --- a/connection_update/docker/default.yml +++ b/connection_update/docker/default.yml @@ -18,7 +18,7 @@ plugin: - connection_update.v1_0 #config -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis # Multi-tenancy multitenant: true diff --git a/connection_update/docker/integration.yml b/connection_update/docker/integration.yml index 25435c1f3..b2741f3c0 100644 --- a/connection_update/docker/integration.yml +++ b/connection_update/docker/integration.yml @@ -17,7 +17,7 @@ plugin: - connection_update.v1_0 #config -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis log-level: info diff --git a/multitenant_provider/docker/default.yml b/multitenant_provider/docker/default.yml index 8ab6fc891..b83cb8bc2 100644 --- a/multitenant_provider/docker/default.yml +++ b/multitenant_provider/docker/default.yml @@ -23,7 +23,7 @@ plugin-config-value: - multitenant_provider.errors.on_unneeded_wallet_key=false #config -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis # Wallet # wallet-name: default diff --git a/multitenant_provider/docker/integration.yml b/multitenant_provider/docker/integration.yml index 54f3322ae..ea83d39f3 100644 --- a/multitenant_provider/docker/integration.yml +++ b/multitenant_provider/docker/integration.yml @@ -24,7 +24,7 @@ plugin: - multitenant_provider.v1_0 #config -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis # Wallet wallet-name: test-provider-wallet diff --git a/plugin_globals/docker/default.yml b/plugin_globals/docker/default.yml index 404b35864..9c58d97b4 100644 --- a/plugin_globals/docker/default.yml +++ b/plugin_globals/docker/default.yml @@ -14,7 +14,7 @@ endpoint: plugin: - plugin_globals.v1_0 -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis log-level: info diff --git a/plugin_globals/docker/integration.yml b/plugin_globals/docker/integration.yml index f18eb9a1b..38ea69916 100644 --- a/plugin_globals/docker/integration.yml +++ b/plugin_globals/docker/integration.yml @@ -12,7 +12,7 @@ endpoint: plugin: - plugin_globals.v1_0 -genesis-url: https://indy.igrant.io/genesis +genesis-url: http://test.bcovrin.vonx.io/genesis log-level: info