-
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.
Showing
11 changed files
with
16,769 additions
and
2 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,9 @@ | ||
PORT=4007 | ||
ENABLE_HTTPS_FOR_DEV=false # ONLY for dev when need https. | ||
CRED_STATUS_DID_SEED=z1AackbUm8U69ohKnihoRRFkXcXJd4Ra1PkAboQ2ZRy1ngB | ||
CRED_STATUS_SERVICE=github | ||
CRED_STATUS_ACCESS_TOKEN= | ||
CRED_STATUS_REPO_ORG_NAME=digitalcredentials | ||
CRED_STATUS_REPO_NAME=credential-status-test-jc | ||
CRED_STATUS_META_REPO_NAME=credential-status-metadata-test-jc | ||
|
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,10 @@ | ||
const env = process.env | ||
env.PORT=4007 | ||
env.ENABLE_HTTPS_FOR_DEV="false" // ONLY for dev when need https. | ||
env.CRED_STATUS_DID_SEED="z1AackbUm8U69ohKnihoRRFkXcXJd4Ra1PkAboQ2ZRy1ngB" | ||
env.CRED_STATUS_SERVICE="github" | ||
env.CRED_STATUS_ACCESS_TOKEN= | ||
env.CRED_STATUS_REPO_ORG_NAME="digitalcredentials" | ||
env.CRED_STATUS_REPO_NAME="credential-status-test-jc" | ||
env.CRED_STATUS_META_REPO_NAME="credential-status-metadata-test-jc" | ||
|
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ WORKDIR /app | |
COPY . . | ||
RUN npm install | ||
CMD ["node", "server.js"] | ||
EXPOSE 4008 | ||
EXPOSE 4008 |
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,6 @@ | ||
export default { | ||
setupFiles: ['./.jest/setEnvVars.js'], | ||
// automock: true | ||
transform: {} | ||
|
||
}; |
Oops, something went wrong.