summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/appsettings.json
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-11-01 17:42:18 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-11-01 17:42:18 -0400
commite0b72374cd14298aacc6f71dc391fdc9814be37c (patch)
tree2e5d85937c34539c1a0df48423b5136508693ca8 /src/SMAPI.Web/appsettings.json
parent79118316065a01322d8ea12a14589ec016794c32 (diff)
parent089e6de749ae7cb109af00164d2597c6644c255e (diff)
downloadSMAPI-e0b72374cd14298aacc6f71dc391fdc9814be37c.tar.gz
SMAPI-e0b72374cd14298aacc6f71dc391fdc9814be37c.tar.bz2
SMAPI-e0b72374cd14298aacc6f71dc391fdc9814be37c.zip
Merge branch 'develop' into stable
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
}
}