From 8881f182a1e7fd650d37c9dd09d1bc0370dbc341 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 4 Jan 2019 22:07:45 +0000 Subject: [PATCH] set a default connection string --- src/test/appsettings.Development.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/test/appsettings.Development.json b/src/test/appsettings.Development.json index f3b65e8e..5aaf8c4e 100644 --- a/src/test/appsettings.Development.json +++ b/src/test/appsettings.Development.json @@ -43,7 +43,10 @@ } }, "Data": { - "DevConnection": { + "DefaultConnection": { + "ConnectionString": "Server=localhost;Port=5432;Database=YavscDev;Username=yavscdev;Password=admin;" + }, + "DevConnection": { "Database":"postgres", "Server": "localhost", "Port": 5432, @@ -109,4 +112,4 @@ "ClientSecret": "2tP84RWq6VkY4iwgQE9Rb75Nc5lmdX6XU2ppNMxF4h7ErBCbyg" } } -} \ No newline at end of file +}