Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ target/
.ipynb_checkpoints

samples/ehr-flask/.env
samples/.DS_Store
.DS_Store
4 changes: 4 additions & 0 deletions katanemo-aaa.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"name": "ehr-service",
"path": "samples/ehr-service"
},
{
"name": "ehr-graphql",
"path": "samples/ehr-graphql-express"
},
{
"name": "ehr-flask",
"path": "samples/ehr-flask"
Expand Down
5 changes: 5 additions & 0 deletions samples/ehr-graphql-express/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
serviceId=f3zydkzp9
clientId=5mraeqf1wpzzabuleid4me0m7
clientSecret=3xvjb00dxczmbil54tpw1oq6v
apiEndpoint=http://localhost:8090
authEndpoint=http://localhost:8081
36 changes: 36 additions & 0 deletions samples/ehr-graphql-express/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// {
// // Use IntelliSense to learn about possible attributes.
// // Hover to view descriptions of existing attributes.
// // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// "version": "0.2.0",
// "configurations": [
// {
// "type": "node",
// "request": "launch",
// "name": "Launch Program (debug)",
// "skipFiles": [
// "<node_internals>/**"
// ],
// "runtimeExecutable": "npm",
// "runtimeArgs": [ "run", "debug" ],
// }
// ]
// }


{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/index.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
}
]
}
Loading