From 20f3cf532764e4280590f8bddcbe434dc27d7a8c Mon Sep 17 00:00:00 2001 From: alikoli Date: Wed, 9 Aug 2023 03:58:34 +0200 Subject: [PATCH] Add empty appsettings --- Oqtane.Server/appsettings.json | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 Oqtane.Server/appsettings.json diff --git a/Oqtane.Server/appsettings.json b/Oqtane.Server/appsettings.json new file mode 100644 index 00000000..e0747f67 --- /dev/null +++ b/Oqtane.Server/appsettings.json @@ -0,0 +1,48 @@ +{ + "Runtime": "Server", + "RenderMode": "ServerPrerendered", + "Database": { + "DefaultDBType": "" + }, + "ConnectionStrings": { + "DefaultConnection": "" + }, + "Installation": { + "DefaultAlias": "", + "HostPassword": "", + "HostEmail": "", + "SiteTemplate": "", + "DefaultTheme": "", + "DefaultContainer": "" + }, + "Localization": { + "DefaultCulture": "en" + }, + "AvailableDatabases": [ + { + "Name": "LocalDB", + "ControlType": "Oqtane.Installer.Controls.LocalDBConfig, Oqtane.Client", + "DBType": "Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer" + }, + { + "Name": "SQL Server", + "ControlType": "Oqtane.Installer.Controls.SqlServerConfig, Oqtane.Client", + "DBType": "Oqtane.Database.SqlServer.SqlServerDatabase, Oqtane.Database.SqlServer" + }, + { + "Name": "SQLite", + "ControlType": "Oqtane.Installer.Controls.SqliteConfig, Oqtane.Client", + "DBType": "Oqtane.Database.Sqlite.SqliteDatabase, Oqtane.Database.Sqlite" + }, + { + "Name": "MySQL", + "ControlType": "Oqtane.Installer.Controls.MySQLConfig, Oqtane.Client", + "DBType": "Oqtane.Database.MySQL.MySQLDatabase, Oqtane.Database.MySQL" + }, + { + "Name": "PostgreSQL", + "ControlType": "Oqtane.Installer.Controls.PostgreSQLConfig, Oqtane.Client", + "DBType": "Oqtane.Database.PostgreSQL.PostgreSQLDatabase, Oqtane.Database.PostgreSQL" + } + ] +} \ No newline at end of file