-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load connections didcomm protocols (#1468)
* Load connections didcomm protocols Signed-off-by: jamshale <[email protected]> * Check and deserialize OOBInvitation Signed-off-by: jamshale <[email protected]> * Use get for dict value check Signed-off-by: jamshale <[email protected]> * Change get_limit_offset to get_paginated_query_params Signed-off-by: jamshale <[email protected]> * Fix pyproject.toml Signed-off-by: jamshale <[email protected]> * Update poetry.lock file Signed-off-by: jamshale <[email protected]> * Update acapy-agent to git main Signed-off-by: jamshale <[email protected]> * Upgrade python image to bookworm Signed-off-by: jamshale <[email protected]> --------- Signed-off-by: jamshale <[email protected]>
- Loading branch information
Showing
10 changed files
with
530 additions
and
483 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
label: connections | ||
label: connections inviter | ||
|
||
admin: [0.0.0.0, 3001] | ||
admin-insecure-mode: false | ||
|
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,28 @@ | ||
label: connections invitee | ||
|
||
admin: [0.0.0.0, 4001] | ||
admin-insecure-mode: false | ||
admin-api-key: change-me | ||
|
||
inbound-transport: | ||
- [http, 0.0.0.0, 4000] | ||
- [ws, 0.0.0.0, 4002] | ||
outbound-transport: http | ||
endpoint: | ||
- http://localhost:4000 | ||
|
||
no-ledger: true | ||
|
||
plugin: | ||
- connections | ||
|
||
log-level: debug | ||
|
||
auto-accept-invites: true | ||
auto-respond-messages: true | ||
|
||
# Wallet | ||
auto-provision: true | ||
wallet-type: askar | ||
wallet-name: connections-wallet-invitee | ||
wallet-key: insecure |
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,4 +1,4 @@ | ||
FROM python:3.12-slim | ||
FROM python:3.12-slim-bookworm | ||
WORKDIR /usr/src/app | ||
|
||
# install poetry | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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