generated from digitalcredentials/isomorphic-lib-template
-
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.
- Loading branch information
1 parent
db8cec9
commit 4d9fa3d
Showing
39 changed files
with
1,614 additions
and
301 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,22 @@ | ||
**/*.env | ||
.git | ||
.github | ||
.husky | ||
coverage | ||
logs | ||
# node_modules | ||
.dockerignore | ||
.editorconfig | ||
.eslintrc.cjs | ||
.gitignore | ||
.lintstagedrc.json | ||
.prettierignore | ||
.prettierrc.js | ||
compose-test.yaml | ||
compose.yaml | ||
compose-health-test.yaml | ||
Dockerfile | ||
README | ||
server-dev-only.cert | ||
server-dev-only.key | ||
.env.healthcheck.testing |
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,7 @@ | ||
PORT=4009 # default port is 4009 | ||
|
||
# see the README for an explanation of logging | ||
LOG_ALL_FILE=logs/all.log | ||
ERROR_LOG_FILE=logs/error.log | ||
CONSOLE_LOG_LEVEL=silly # default is silly, i.e. log everything - see the README for allowed levels | ||
LOG_LEVEL=silly # default is silly |
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,20 @@ | ||
module.exports = { | ||
overrides: [ | ||
{ | ||
files: ['*.js'], | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
env: { | ||
node: true, | ||
mocha: true, | ||
es6: true | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2022, | ||
sourceType: "module" | ||
} | ||
} | ||
] | ||
} |
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
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,5 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged | ||
npm test |
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 @@ | ||
{ | ||
"*.js": [ | ||
"prettier --write", | ||
"eslint" | ||
] | ||
} |
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 @@ | ||
module.exports = { | ||
export default { | ||
trailingComma: 'none', | ||
tabWidth: 2, | ||
semi: 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# isomorphic-lib-template Changelog | ||
|
||
## 1.0.0 - TBD | ||
# verifier-service Changelog | ||
|
||
## 0.1.0 - 2024-11-27 | ||
### Added | ||
- first release | ||
|
||
- Initial commit. | ||
For previous history, see Git commits. |
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 @@ | ||
#FROM node:20 | ||
#WORKDIR /app | ||
#COPY . . | ||
#RUN npm install | ||
#CMD ["node", "server.js"] | ||
#EXPOSE 4006 | ||
|
||
FROM node:20 | ||
WORKDIR /app | ||
COPY . . | ||
CMD ["node", "server.js"] | ||
EXPOSE 4006 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.