-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
33 changed files
with
4,261 additions
and
170 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"yaml.schemas": { | ||
".vscode/configuration_schema.json": [ | ||
"router.yaml" | ||
] | ||
} | ||
} | ||
"yaml.schemas": { | ||
".vscode/configuration_schema.json": ["router.yaml"] | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} |
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,31 @@ | ||
# Ignore the compiled output. | ||
dist/ | ||
|
||
# TypeScript incremental compilation cache | ||
*.tsbuildinfo | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Coverage (from Jest) | ||
coverage/ | ||
__temp | ||
|
||
# JUnit Reports (used mainly in CircleCI) | ||
reports/ | ||
junit.xml | ||
|
||
# Node modules | ||
node_modules/ | ||
|
||
# Mac OS | ||
.DS_Store | ||
|
||
# Intellij Configuration Files | ||
.idea/ | ||
|
||
generated-schema.graphql |
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 @@ | ||
FROM node:alpine | ||
|
||
WORKDIR /usr/app | ||
COPY ./ /usr/app | ||
RUN npm install | ||
ENV PORT 8888 | ||
CMD ["npm", "start"] |
Oops, something went wrong.