summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/appsettings.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Web/appsettings.json')
-rw-r--r--src/SMAPI.Web/appsettings.json19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/SMAPI.Web/appsettings.json b/src/SMAPI.Web/appsettings.json
index 852f6f71..eb6ecc9b 100644
--- a/src/SMAPI.Web/appsettings.json
+++ b/src/SMAPI.Web/appsettings.json
@@ -1,3 +1,11 @@
+/*
+
+
+ This contains the default settings for the web app. Login credentials and contextual settings are
+ configured via appsettings.Development.json locally, or environment properties in AWS.
+
+
+*/
{
"Logging": {
"IncludeScopes": false,
@@ -19,12 +27,19 @@
"GitHubBaseUrl": "https://api.github.com",
"GitHubReleaseUrlFormat": "repos/{0}/releases/latest",
"GitHubAcceptHeader": "application/vnd.github.v3+json",
- "GitHubUsername": null, /* set via environment properties */
- "GitHubPassword": null, /* set via environment properties */
+ "GitHubUsername": null, // see top note
+ "GitHubPassword": null, // see top note
"NexusKey": "Nexus",
"NexusUserAgent": "Nexus Client v0.63.15",
"NexusBaseUrl": "http://www.nexusmods.com/stardewvalley",
"NexusModUrlFormat": "mods/{0}"
+ },
+ "LogParser": {
+ "SectionUrl": null, // see top note
+ "PastebinBaseUrl": "https://pastebin.com/",
+ "PastebinUserAgent": "SMAPI/{0} (+https://github.com/Pathoschild/SMAPI)",
+ "PastebinUserKey": null, // see top note
+ "PastebinDevKey": null // see top note
}
}