Skip to content

Commit

Permalink
Merge pull request #154 from smart-on-fhir/mg/server-dependabot
Browse files Browse the repository at this point in the history
Address dependabot errors from demo server
  • Loading branch information
dogversioning authored Jul 16, 2024
2 parents 5d74f03 + fbbd029 commit 8e08719
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
8 changes: 7 additions & 1 deletion flask_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
# app setup
smart_defaults = {
'app_id': 'my_web_app',
'api_base': 'https://sb-fhir-stu3.smarthealthit.org/smartstu3/data',
# The CapabilityStatement being returned from the new test server,
# r4.smarthealthit.org, is currently missing a required field in the
# description of one of the search params. So you may see a
# 'Non-optional property "type"' error message when running this with
# the default config. We'll remove this message once that has been
# fixed and tested.
'api_base': 'https://r4.smarthealthit.org/',
'redirect_uri': 'http://localhost:8000/fhir-app/',
}

Expand Down
16 changes: 8 additions & 8 deletions requirements_flask_app.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Beaker==1.10.0
Flask==0.10.1
Jinja2==2.11.3
MarkupSafe==0.23
Werkzeug==0.14.1
isodate==0.5.1
itsdangerous==0.24
requests==2.7.0
Beaker>=1.13.0
Flask>=2.3.2
Jinja2>=3.1.2
MarkupSafe>=2.1.1
Werkzeug>=2.3.3
isodate>=0.6.1
itsdangerous>=2.1.2
requests>=2.22.0

0 comments on commit 8e08719

Please sign in to comment.