/*


  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,
        "LogLevel": {
            "Default": "Warning",
            "Hangfire": "Information"
        }
    },

    "Site": {
        "BetaEnabled": false,
        "OtherBlurb": null,
        "SupporterList": null
    },

    "ApiClients": {
        "UserAgent": "SMAPI/{0} (+https://smapi.io)",

        "AzureBlobConnectionString": null,
        "AzureBlobTempContainer": "smapi-web-temp",
        "AzureBlobTempExpiryDays": 30,

        "ChucklefishBaseUrl": "https://community.playstarbound.com",
        "ChucklefishModPageUrlFormat": "resources/{0}",

        "CurseForgeBaseUrl": "https://api.curseforge.com/v1/",
        "CurseForgeApiKey": null,

        "GitHubBaseUrl": "https://api.github.com",
        "GitHubAcceptHeader": "application/vnd.github.v3+json",
        "GitHubUsername": null,
        "GitHubPassword": null,

        "ModDropApiUrl": "https://www.moddrop.com/api/mods/data",
        "ModDropModPageUrl": "https://www.moddrop.com/stardew-valley/mod/{0}",

        "NexusApiKey": null,
        "NexusBaseUrl": "https://www.nexusmods.com/stardewvalley/",
        "NexusModUrlFormat": "mods/{0}",
        "NexusModScrapeUrlFormat": "mods/{0}?tab=files",

        "PastebinBaseUrl": "https://pastebin.com/"
    },

    "Storage": {
        "Mode": "InMemory",
        "ConnectionString": null,
        "Database": "smapi"
    },

    "ModCompatibilityList": {
        "StaleMinutes": 15
    },

    "BackgroundServices": {
        "Enabled": true
    },

    "ModUpdateCheck": {
        "SuccessCacheMinutes": 60,
        "ErrorCacheMinutes": 5,
        "ModOverrides": [
            {
                "ID": "Pathoschild.SMAPI",
                "AllowNonStandardVersions": true,
                "SetUrl": "https://smapi.io"
            },
            {
                "ID": "MartyrPher.SMAPI-Android-Installer",
                "AllowNonStandardVersions": true
            }
        ],
        "SmapiInfo": {
            "ID": "Pathoschild.SMAPI",
            "DefaultUpdateKey": "GitHub:Pathoschild/SMAPI",
            "AddBetaUpdateKeys": [ "Nexus:2400" ]
        }
    }
}