Update appsettings.release.json

synchronized with appsettings.json
This commit is contained in:
Shaun Walker 2021-05-26 12:00:49 -04:00 committed by GitHub
parent 99838679bd
commit d520d50b75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,11 @@
{ {
"Runtime": "Server",
"Database": { "Database": {
"DatabaseType": "" "DatabaseType": ""
}, },
"ConnectionStrings": { "ConnectionStrings": {
"DefaultConnection": "" "DefaultConnection": ""
}, },
"Runtime": "Server",
"Installation": { "Installation": {
"DefaultAlias": "", "DefaultAlias": "",
"HostPassword": "", "HostPassword": "",
@ -16,5 +16,42 @@
}, },
"Localization": { "Localization": {
"DefaultCulture": "en" "DefaultCulture": "en"
},
"AvailableDatabases": [
{
"Name": "LocalDB",
"FriendlyName": "Local Database",
"ControlType": "Oqtane.Installer.Controls.LocalDBConfig, Oqtane.Client",
"DBType": "Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer",
"Package": "Oqtane.Database.SqlServer"
},
{
"Name": "SqlServer",
"FriendlyName": "SQL Server",
"ControlType": "Oqtane.Installer.Controls.SqlServerConfig, Oqtane.Client",
"DBType": "Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer",
"Package": "Oqtane.Database.SqlServer"
},
{
"Name": "Sqlite",
"FriendlyName": "Sqlite",
"ControlType": "Oqtane.Installer.Controls.SqliteConfig, Oqtane.Client",
"DBType": "Oqtane.Database.Sqlite.SqliteDatabase, Oqtane.Database.Sqlite",
"Package": "Oqtane.Database.Sqlite"
},
{
"Name": "MySQL",
"FriendlyName": "MySQL",
"ControlType": "Oqtane.Installer.Controls.MySQLConfig, Oqtane.Client",
"DBType": "Oqtane.Database.MySQL.MySQLDatabase, Oqtane.Database.MySQL",
"Package": "Oqtane.Database.MySQL"
},
{
"Name": "PostgreSQL",
"FriendlyName": "PostgreSQL",
"ControlType": "Oqtane.Installer.Controls.PostgreSQLConfig, Oqtane.Client",
"DBType": "Oqtane.Database.PostgreSQL.PostgreSQLDatabase, Oqtane.Database.PostgreSQL",
"Package": "Oqtane.Database.PostgreSQL"
} }
]
} }