Skip to content

Commit

Permalink
adding a mock datasource
Browse files Browse the repository at this point in the history
  • Loading branch information
lleadbet committed Jul 27, 2023
1 parent 621d443 commit 4f3a474
Show file tree
Hide file tree
Showing 33 changed files with 4,261 additions and 170 deletions.
12 changes: 6 additions & 6 deletions .vscode/settings.json
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"
}
31 changes: 31 additions & 0 deletions datasource/.gitignore
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
7 changes: 7 additions & 0 deletions datasource/Dockerfile
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"]
Loading

0 comments on commit 4f3a474

Please sign in to comment.