-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1440 from IntersectMBO/develop
chore: bump @intersect.mbo/pdf-ui to v0.2.1
- Loading branch information
Showing
9 changed files
with
741 additions
and
5,246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
"host" : "localhost", | ||
"cachedurationseconds": 20, | ||
"sentrydsn": "https://username:[email protected]/id", | ||
"sentryenv": "dev", | ||
"metadatavalidationhost": "localhost", | ||
"metadatavalidationport": 3001, | ||
"metadatavalidationmaxconcurrentrequests": 10 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,8 @@ data VVAConfigInternal | |
, vVaConfigInternalCacheDurationSeconds :: Int | ||
-- | Sentry DSN | ||
, vVAConfigInternalSentrydsn :: String | ||
-- | Sentry environment | ||
, vVAConfigInternalSentryEnv :: String | ||
-- | Metadata validation service host | ||
, vVAConfigInternalMetadataValidationHost :: Text | ||
-- | Metadata validation service port | ||
|
@@ -97,6 +99,7 @@ instance DefaultConfig VVAConfigInternal where | |
vVAConfigInternalHost = "localhost", | ||
vVaConfigInternalCacheDurationSeconds = 20, | ||
vVAConfigInternalSentrydsn = "https://username:[email protected]/id", | ||
vVAConfigInternalSentryEnv = "development", | ||
vVAConfigInternalMetadataValidationHost = "localhost", | ||
vVAConfigInternalMetadataValidationPort = 3001, | ||
vVAConfigInternalMetadataValidationMaxConcurrentRequests = 10 | ||
|
@@ -115,6 +118,8 @@ data VVAConfig | |
, cacheDurationSeconds :: Int | ||
-- | Sentry DSN | ||
, sentryDSN :: String | ||
-- | Sentry environment | ||
, sentryEnv :: String | ||
-- | Metadata validation service host | ||
, metadataValidationHost :: Text | ||
-- | Metadata validation service port | ||
|
@@ -161,6 +166,7 @@ convertConfig VVAConfigInternal {..} = | |
serverHost = vVAConfigInternalHost, | ||
cacheDurationSeconds = vVaConfigInternalCacheDurationSeconds, | ||
sentryDSN = vVAConfigInternalSentrydsn, | ||
sentryEnv = vVAConfigInternalSentryEnv, | ||
metadataValidationHost = vVAConfigInternalMetadataValidationHost, | ||
metadataValidationPort = vVAConfigInternalMetadataValidationPort, | ||
metadataValidationMaxConcurrentRequests = vVAConfigInternalMetadataValidationMaxConcurrentRequests | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.