generated from digitalcredentials/isomorphic-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from digitalcredentials/convert-to-bsl
Converts Status List 2021 to Bitstring Status List and does related cleanup
- Loading branch information
Showing
15 changed files
with
540 additions
and
332 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
PORT=4008 # default port is 4008 | ||
ENABLE_HTTPS_FOR_DEV=false # ONLY for dev when need https; default is false | ||
|
||
# Database specific environment variables | ||
CRED_STATUS_SERVICE=mongodb | ||
CRED_STATUS_DID_SEED=z1AackbUm8U69ohKnihoRRFkXcXJd4Ra1PkAboQ2ZRy1ngB | ||
STATUS_CRED_SITE_ORIGIN=https://credentials.example.edu | ||
CRED_STATUS_DB_URL=mongodb+srv://user:[email protected]?retryWrites=false | ||
CRED_STATUS_DB_HOST=domain.mongodb.net # ignored if CRED_STATUS_DB_URL is configured | ||
CRED_STATUS_DB_PORT=27017 # ignored if CRED_STATUS_DB_URL is configured | ||
CRED_STATUS_DB_USER=testuser # ignored if CRED_STATUS_DB_URL is configured | ||
CRED_STATUS_DB_PASS=testpass # ignored if CRED_STATUS_DB_URL is configured | ||
CRED_STATUS_DB_NAME= # autogenerated if omitted | ||
STATUS_CRED_TABLE_NAME= # autogenerated if omitted | ||
USER_CRED_TABLE_NAME= # autogenerated if omitted | ||
CONFIG_TABLE_NAME= # autogenerated if omitted | ||
EVENT_TABLE_NAME= # autogenerated if omitted | ||
CRED_EVENT_TABLE_NAME= # autogenerated if omitted |
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,12 @@ | ||
PORT=4008 # default port is 4008 | ||
ENABLE_HTTPS_FOR_DEV=false # ONLY for dev when need https; default is false | ||
|
||
# Git specific environment variables | ||
CRED_STATUS_SERVICE=github | ||
CRED_STATUS_DID_SEED=z1AackbUm8U69ohKnihoRRFkXcXJd4Ra1PkAboQ2ZRy1ngB | ||
CRED_STATUS_REPO_OWNER=digitalcredentials | ||
CRED_STATUS_REPO_NAME=credential-status-test-jc | ||
CRED_STATUS_REPO_ID=12345678 # only required when CRED_STATUS_SERVICE = 'gitlab' | ||
CRED_STATUS_META_REPO_NAME=credential-status-metadata-test-jc | ||
CRED_STATUS_META_REPO_ID=87654321 # only required when CRED_STATUS_SERVICE = 'gitlab' | ||
CRED_STATUS_ACCESS_TOKEN=REPLACE_THIS_WITH_A_GITHUB_ACCESS_TOKEN |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
# exchange-coordinator Changelog | ||
# workflow-coordinator Changelog | ||
|
||
## 1.0.0 - TBD | ||
|
||
### Added | ||
|
||
- Initial commit. | ||
|
||
### Changed | ||
- Convert Status List 2021 to Bitstring Status List. | ||
- Differentiate between database status service and Git status service. | ||
- Rename environment variables. | ||
- Update revocation and suspension instructions. |
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,20 +1,23 @@ | ||
version: '3.5' | ||
services: | ||
coordinator: | ||
image: digitalcredentials/exchange-coordinator:0.1.0 | ||
# env_file: | ||
# - ./.coordinator.env | ||
image: digitalcredentials/workflow-coordinator:0.1.0 | ||
env_file: | ||
- ./.coordinator.env | ||
ports: | ||
- "4005:4005" | ||
signing: | ||
image: digitalcredentials/signing-service:0.1.0 | ||
# env_file: | ||
# - ./.signing-service.env | ||
transactions: | ||
image: digitalcredentials/signing-service:0.1.0 | ||
env_file: | ||
- ./.signing-service.env | ||
transaction: | ||
image: digitalcredentials/transaction-service:0.1.0 | ||
# env_file: | ||
# - ./.transactions-service.env | ||
#status: | ||
# image: digitalcredentials/status-service:0.1.0 | ||
# env_file: | ||
# - ./.status-service.env | ||
env_file: | ||
- ./.transaction-service.env | ||
status: | ||
image: digitalcredentials/status-service-db:0.1.0 | ||
# image: digitalcredentials/status-service-git:0.1.0 | ||
env_file: | ||
- ./.status-service-db.env | ||
# - ./.status-service-git.env | ||
|
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.