Skip to content

Commit

Permalink
Switch to using BCovrin Test as the ledger for integration tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Wade Barnes <wade@neoterictech.ca>
  • Loading branch information
WadeBarnes committed Dec 4, 2023
1 parent 43e91af commit 8d8a5db
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion basicmessage_storage/docker/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion basicmessage_storage/docker/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion connection_update/docker/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion connection_update/docker/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion multitenant_provider/docker/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion multitenant_provider/docker/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugin_globals/docker/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion plugin_globals/docker/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8d8a5db

Please sign in to comment.