-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: simplify example app's initial setup #65
base: master
Are you sure you want to change the base?
Conversation
spid-testenv2 1.1.0 autogenerates the key & certificate and it can also get a remote metadata at runtime, allowing us to avoid having to manually saving the metadata to a file. The testenv GETs the metadata from the example app on the first login attempt.
Codecov Report
@@ Coverage Diff @@
## master #65 +/- ##
==========================================
+ Coverage 66.26% 67.06% +0.79%
==========================================
Files 11 11
Lines 750 759 +9
Branches 117 116 -1
==========================================
+ Hits 497 509 +12
+ Misses 252 249 -3
Partials 1 1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution, we really appreciate. I just left a couple of comments.
@@ -25,11 +25,12 @@ services: | |||
- spid-testenv2 | |||
|
|||
spid-testenv2: | |||
image: italia/spid-testenv2:latest | |||
image: italia/spid-testenv2:1.1.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why stick to a specific version and not use the latest available?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's good practice to stick to a specific version for repeatability. A new major release could bring changes that break our assumptions on how the testenv behaves, such as an incompatible configuration format.
Co-authored-by: Daniele Manni <BurnedMarshal@users.noreply.github.com>
(upstreaming spid-express changes)
spid-testenv2 1.1.0 autogenerates the key & certificate and it
can also get a remote metadata at runtime, allowing us to avoid
having to manually save the metadata to a file.
The testenv GETs the metadata from the example app on the first
login attempt.