generated from digitalcredentials/isomorphic-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jc-add-healthcheck
- Loading branch information
Showing
24 changed files
with
786 additions
and
310 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module.exports = { | ||
"env": { | ||
"node": true, | ||
"mocha": true | ||
env: { | ||
node: true, | ||
mocha: true | ||
}, | ||
extends: [ | ||
'standard' | ||
|
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:pass@domain.mongodb.net?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
Oops, something went wrong.