-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: enable Release 2.0.0 #155
Conversation
seakayone
commented
Jul 29, 2024
•
edited
Loading
edited
- Update versions to 2.0.0
- Fix base url to production
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
|
@@ -67,7 +67,7 @@ async fn init_server() { | |||
|
|||
let base_url = settings | |||
.get::<Url>("base_url") | |||
.unwrap_or(Url::parse("http://localhost:3000").unwrap()); | |||
.unwrap_or(Url::parse("https://meta.dasch.swiss").unwrap()); |
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.
will this change affect the local development?
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.
we currently have not possibility to provide a configuration to the deployment. It is hardcoded in the Go service as well, e.g. https://meta.stage.dasch.swiss/robots.txt
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.
As a followup I have created DEV-3935