Make default DB SQLite

This commit is contained in:
Jordan Brown
2020-03-22 16:59:01 -04:00
parent e352741a8b
commit e13e66b161
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -15,6 +15,7 @@ artifacts/
/tests/DMAPI/travistester.int
/tests/DMAPI/travistester.dmb
/src/Tgstation.Server.Host/appsettings.Development.json
/src/Tgstation.Server.Host/LocalTestDB.sqlite3
/src/Tgstation.Server.Host/wwwroot
/src/Tgstation.Server.Host/ClientApp/node_modules
/src/Tgstation.Server.Host/ClientApp/build
+3 -3
View File
@@ -9,7 +9,7 @@
"UseBasicWatchdogOnWindows": false
},
"FileLogging": {
"Directory": null, //use the default path
"Directory": null,
"Disable": false,
"LogLevel": "Debug",
"MicrosoftLogLevel": "Warning"
@@ -48,9 +48,9 @@
},
"Database": {
"DropDatabase": false,
"DatabaseType": "SqlServer",
"DatabaseType": "Sqlite",
"ResetAdminPassword": false,
"MySqlServerVersion": null,
"ConnectionString": "Data Source=(local);Initial Catalog=TGS;Integrated Security=True"
"ConnectionString": "Data Source=LocalTestDB.sqlite3;Mode=ReadWriteCreate"
}
}