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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ For feedback and questions please submit an issue to this repository or on the [
7. Select the facility/facilities you'd like to test, which will populate the patient list
8. Select the patients you would like to include in the report
9. Select the date range (or measurement period) - NOTE that the current test only works with Q1
10. Select the Get Report button - the current performance is ~1 sec per patient (so ~100 sec for the single-facility and ~200 sec for the multiple-facility)
10. Select the Get Report button - the current performance is ~1 sec per patient (so ~100 sec for the single-facility and ~200 sec for the multiple-facility).
9 changes: 4 additions & 5 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ RUN yarn install \

RUN yarn build

FROM node:18.12.1-alpine
FROM nginx:alpine

WORKDIR /app

COPY --from=builder /app .
COPY --from=builder /app/build /usr/share/nginx/html

ENV HOST 0.0.0.0
EXPOSE 3000
EXPOSE 80

CMD [ "yarn", "start" ]
CMD ["nginx", "-g", "daemon off;"]
15 changes: 15 additions & 0 deletions infra/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# dependencies
node_modules

# sst
.sst
.build

# opennext
.open-next

# misc
.DS_Store

# local env files
.env*.local
15 changes: 15 additions & 0 deletions infra/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug SST Start",
"type": "node",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst",
"runtimeArgs": ["start", "--increase-timeout"],
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"],
"env": {}
}
]
}
5 changes: 5 additions & 0 deletions infra/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"search.exclude": {
"**/.sst": true
}
}
Loading