From 454939adadd6adfe67df7766c30b2d14b06c2037 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 24 Oct 2017 00:52:58 +0900 Subject: [PATCH] neutral default launchprofile --- BTCPayServer/Properties/launchSettings.json | 43 +++++++++++---------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/BTCPayServer/Properties/launchSettings.json b/BTCPayServer/Properties/launchSettings.json index b31b0cd41..5404d0413 100644 --- a/BTCPayServer/Properties/launchSettings.json +++ b/BTCPayServer/Properties/launchSettings.json @@ -1,23 +1,26 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:14139/", - "sslPort": 0 + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:14139/", + "sslPort": 0 + } + }, + "profiles": { + "Default": { + "commandName": "Project" + }, + "Docker-Regtest": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "BTCPAY_EXPLORERURL": "http://127.0.0.1:32838/", + "BTCPAY_NETWORK": "regtest", + "ASPNETCORE_ENVIRONMENT": "Development", + "BTCPAY_POSTGRES": "User ID=postgres;Host=127.0.0.1;Port=39372;Database=btcpayserver" + }, + "applicationUrl": "http://localhost:14142/" + } } - }, - "profiles": { - "Docker-Regtest": { - "commandName": "Project", - "launchBrowser": true, - "environmentVariables": { - "BTCPAY_EXPLORERURL": "http://127.0.0.1:32838/", - "BTCPAY_NETWORK": "regtest", - "ASPNETCORE_ENVIRONMENT": "Development", - "BTCPAY_POSTGRES": "User ID=postgres;Host=127.0.0.1;Port=39372;Database=btcpayserver" - }, - "applicationUrl": "http://localhost:14142/" - } - } } \ No newline at end of file