forked from openwallet-foundation-labs/credhub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Id of credential (openwallet-foundation-labs#92)
* Id of credential Fixes openwallet-foundation-labs#90 Signed-off-by: Mirko Mollik <[email protected]> * add a task to start all required tasks Signed-off-by: Mirko Mollik <[email protected]> * recorder tasks Signed-off-by: Mirko Mollik <[email protected]> * Id of credential Fixes openwallet-foundation-labs#90 Signed-off-by: Mirko Mollik <[email protected]> * add patch Signed-off-by: Mirko Mollik <[email protected]> --------- Signed-off-by: Mirko Mollik <[email protected]>
- Loading branch information
Showing
18 changed files
with
1,044 additions
and
843 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Start issuer, holder, verifier", | ||
"dependsOrder": "parallel", | ||
"dependsOn": [ | ||
"nx run issuer-frontend:serve", | ||
"nx run issuer-backend:serve", | ||
"nx run holder-app:serve", | ||
"nx run holder-backend:serve", | ||
"nx run verifier-frontend:serve", | ||
"nx run verifier-backend:serve" | ||
] | ||
}, | ||
|
||
{ | ||
"label": "nx run issuer-frontend:serve", | ||
"type": "shell", | ||
"command": "pnpm exec nx run issuer-frontend:serve" | ||
}, | ||
{ | ||
"label": "nx run issuer-backend:serve", | ||
"type": "shell", | ||
"command": "pnpm exec nx run issuer-backend:serve" | ||
}, | ||
{ | ||
"label": "nx run holder-app:serve", | ||
"type": "shell", | ||
"command": "pnpm exec nx run holder-app:serve" | ||
}, | ||
{ | ||
"label": "nx run holder-backend:serve", | ||
"type": "shell", | ||
"command": "pnpm exec nx run holder-backend:serve" | ||
}, | ||
|
||
{ | ||
"label": "nx run verifier-frontend:serve", | ||
"type": "shell", | ||
"command": "pnpm exec nx run verifier-frontend:serve" | ||
}, | ||
{ | ||
"label": "nx run verifier-backend:serve", | ||
"type": "shell", | ||
"command": "pnpm exec nx run verifier-backend:serve" | ||
} | ||
] | ||
} |
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 |
---|---|---|
|
@@ -2,12 +2,10 @@ | |
"dependencies": { | ||
"sqlite3": "^5.1.7", | ||
"pg": "^8.11.5", | ||
"@sphereon/ssi-express-support": "0.26.0", | ||
"@sphereon/oid4vci-issuer": "^0.15.1" | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@sphereon/[email protected]": "patches/@[email protected]", | ||
"@sphereon/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
|
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
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.