diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 18:24:54 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 18:24:54 -0400 |
commit | 6521df7b131924835eb797251c1e956fae0d6e13 (patch) | |
tree | b704dc64b6b6fef72615bac8950d5eff3c80ea89 /src/SMAPI.Web/appsettings.json | |
parent | e22a54212182d0adc443ac95bc791e83c90f7e10 (diff) | |
parent | b7b8b001c5c2dc5d2c9fc1347532ca29368c2325 (diff) | |
download | SMAPI-6521df7b131924835eb797251c1e956fae0d6e13.tar.gz SMAPI-6521df7b131924835eb797251c1e956fae0d6e13.tar.bz2 SMAPI-6521df7b131924835eb797251c1e956fae0d6e13.zip |
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI.Web/appsettings.json')
-rw-r--r-- | src/SMAPI.Web/appsettings.json | 98 |
1 files changed, 49 insertions, 49 deletions
diff --git a/src/SMAPI.Web/appsettings.json b/src/SMAPI.Web/appsettings.json index e97b2339..9e15aa97 100644 --- a/src/SMAPI.Web/appsettings.json +++ b/src/SMAPI.Web/appsettings.json @@ -7,54 +7,54 @@ */ { - "Logging": { - "IncludeScopes": false, - "LogLevel": { - "Default": "Warning" + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Warning" + } + }, + + "Site": { + "RootUrl": null, // see top note + "ModListUrl": null, // see top note + "LogParserUrl": null, // see top note + "BetaEnabled": null, // see top note + "BetaBlurb": null // see top note + }, + + "ApiClients": { + "UserAgent": "SMAPI/{0} (+https://smapi.io)", + + "ChucklefishBaseUrl": "https://community.playstarbound.com", + "ChucklefishModPageUrlFormat": "resources/{0}", + + "GitHubBaseUrl": "https://api.github.com", + "GitHubStableReleaseUrlFormat": "repos/{0}/releases/latest", + "GitHubAnyReleaseUrlFormat": "repos/{0}/releases?per_page=2", // allow for draft release (only visible if GitHub repo is owned by same account as the update check credentials) + "GitHubAcceptHeader": "application/vnd.github.v3+json", + "GitHubUsername": null, // see top note + "GitHubPassword": null, // see top note + + "ModDropApiUrl": "https://www.moddrop.com/api/mods/data", + "ModDropModPageUrl": "https://www.moddrop.com/sdv/mod/{0}", + + "NexusBaseUrl": "https://www.nexusmods.com/stardewvalley/", + "NexusModUrlFormat": "mods/{0}", + "NexusModScrapeUrlFormat": "mods/{0}?tab=files", + + "PastebinBaseUrl": "https://pastebin.com/", + "PastebinUserKey": null, // see top note + "PastebinDevKey": null // see top note + }, + + "ModCompatibilityList": { + "CacheMinutes": 10 + }, + + "ModUpdateCheck": { + "SuccessCacheMinutes": 60, + "ErrorCacheMinutes": 5, + "SemanticVersionRegex": "^(?>(?<major>0|[1-9]\\d*))\\.(?>(?<minor>0|[1-9]\\d*))(?>(?:\\.(?<patch>0|[1-9]\\d*))?)(?:-(?<prerelease>(?>[a-z0-9]+[\\-\\.]?)+))?$", + "CompatibilityPageUrl": "https://mods.smapi.io" } - }, - - "Site": { - "RootUrl": null, // see top note - "ModListUrl": null, // see top note - "LogParserUrl": null, // see top note - "BetaEnabled": null, // see top note - "BetaBlurb": null // see top note - }, - - "ApiClients": { - "UserAgent": "SMAPI/{0} (+https://smapi.io)", - - "ChucklefishBaseUrl": "https://community.playstarbound.com", - "ChucklefishModPageUrlFormat": "resources/{0}", - - "GitHubBaseUrl": "https://api.github.com", - "GitHubStableReleaseUrlFormat": "repos/{0}/releases/latest", - "GitHubAnyReleaseUrlFormat": "repos/{0}/releases?per_page=2", // allow for draft release (only visible if GitHub repo is owned by same account as the update check credentials) - "GitHubAcceptHeader": "application/vnd.github.v3+json", - "GitHubUsername": null, // see top note - "GitHubPassword": null, // see top note - - "ModDropApiUrl": "https://www.moddrop.com/api/mods/data", - "ModDropModPageUrl": "https://www.moddrop.com/sdv/mod/{0}", - - "NexusBaseUrl": "https://www.nexusmods.com/stardewvalley/", - "NexusModUrlFormat": "mods/{0}", - "NexusModScrapeUrlFormat": "mods/{0}?tab=files", - - "PastebinBaseUrl": "https://pastebin.com/", - "PastebinUserKey": null, // see top note - "PastebinDevKey": null // see top note - }, - - "ModCompatibilityList": { - "WikiCacheMinutes": 10 - }, - - "ModUpdateCheck": { - "SuccessCacheMinutes": 60, - "ErrorCacheMinutes": 5, - "SemanticVersionRegex": "^(?>(?<major>0|[1-9]\\d*))\\.(?>(?<minor>0|[1-9]\\d*))(?>(?:\\.(?<patch>0|[1-9]\\d*))?)(?:-(?<prerelease>(?>[a-z0-9]+[\\-\\.]?)+))?$", - "CompatibilityPageUrl": "https://mods.smapi.io" - } } |