chore: 更新配置文件
This commit is contained in:
parent
8c3999c265
commit
6ccbadd1ea
|
@ -157,7 +157,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapClient.Web", "src\
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootStarpAdmin.DataAccess.FreeSql", "src\blazor\admin\BootStarpAdmin.DataAccess.FreeSql\BootStarpAdmin.DataAccess.FreeSql.csproj", "{11122D97-B349-4A3E-B7DD-73B8B363C47C}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootStarpAdmin.DataAccess.FreeSql", "src\blazor\admin\BootStarpAdmin.DataAccess.FreeSql\BootStarpAdmin.DataAccess.FreeSql.csproj", "{11122D97-B349-4A3E-B7DD-73B8B363C47C}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BootStarpAdmin.DataAccess.SqlSugar", "src\blazor\admin\BootStarpAdmin.DataAccess.SqlSugar\BootStarpAdmin.DataAccess.SqlSugar.csproj", "{1D20E6CF-9825-4CDE-B732-AE586BD1AABA}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootStarpAdmin.DataAccess.SqlSugar", "src\blazor\admin\BootStarpAdmin.DataAccess.SqlSugar\BootStarpAdmin.DataAccess.SqlSugar.csproj", "{1D20E6CF-9825-4CDE-B732-AE586BD1AABA}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapClient.Web.Core", "src\blazor\client\BootstrapClient.Web.Core\BootstrapClient.Web.Core.csproj", "{FFDF9FF9-0B29-47D3-AD42-53A476B570EC}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BootstrapClient.Web.Core", "src\blazor\client\BootstrapClient.Web.Core\BootstrapClient.Web.Core.csproj", "{FFDF9FF9-0B29-47D3-AD42-53A476B570EC}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -76,7 +76,7 @@ namespace Microsoft.Extensions.DependencyInjection
|
||||||
services.AddPetaPocoDataAccessServices((provider, builder) =>
|
services.AddPetaPocoDataAccessServices((provider, builder) =>
|
||||||
{
|
{
|
||||||
var configuration = provider.GetRequiredService<IConfiguration>();
|
var configuration = provider.GetRequiredService<IConfiguration>();
|
||||||
var connString = configuration.GetConnectionString("bb");
|
var connString = configuration.GetConnectionString("ba");
|
||||||
builder.UsingProvider<SQLiteDatabaseProvider>()
|
builder.UsingProvider<SQLiteDatabaseProvider>()
|
||||||
.UsingConnectionString(connString);
|
.UsingConnectionString(connString);
|
||||||
});
|
});
|
||||||
|
|
|
@ -16,59 +16,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"SimulateUserName": "",
|
"SimulateUserName": "",
|
||||||
"AutoGenerateDatabase": true,
|
|
||||||
"BootstrapAdminAuthenticationOptions": {
|
"BootstrapAdminAuthenticationOptions": {
|
||||||
"KeyPath": "..\\..\\keys"
|
"KeyPath": "..\\..\\keys"
|
||||||
},
|
},
|
||||||
"DB": [
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "SqlServer",
|
|
||||||
"SqlFolder": "..\\..\\..\\db\\SqlServer",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Data Source=.;Initial Catalog=BootstrapAdmin;User ID=sa;Password=sa"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"ProviderName": "Sqlite",
|
|
||||||
"SqlFolder": "..\\..\\..\\db\\SQLite",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Data Source=BootstrapAdmin.db;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "MySql",
|
|
||||||
"SqlFolder": "..\\..\\..\\db\\MySQL",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Server=localhost;Database=BA;Uid=argozhang;Pwd=argo@163.com;SslMode=none;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "Oracle",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=XXXXXX)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL)));User Id=XX;Password=XX"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "Npgsql",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Server=localhost;Database=BootstrapAdmin;User ID=argozhang;Password=argo@163.com;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"Widget": "Bootstrap.DataAccess.MongoDB",
|
|
||||||
"ProviderName": "MongoDB",
|
|
||||||
"SqlFolder": "..\\..\\..\\db\\MongoDB",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "mongodb://localhost:27017/BootstrapAdmin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"SwaggerPathBase": "",
|
"SwaggerPathBase": "",
|
||||||
"GiteeHealthChecks": "true",
|
"GiteeHealthChecks": "true",
|
||||||
"AllowOrigins": "http://localhost:49185",
|
"AllowOrigins": "http://localhost:49185",
|
||||||
|
@ -157,194 +107,5 @@
|
||||||
"第二层",
|
"第二层",
|
||||||
"第三层",
|
"第三层",
|
||||||
"第四层"
|
"第四层"
|
||||||
],
|
]
|
||||||
"LongbowCache": {
|
|
||||||
"Enabled": true,
|
|
||||||
"CorsItems": [
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "ba",
|
|
||||||
"Url": "CacheList.axd",
|
|
||||||
"Desc": "后台管理数据缓存接口",
|
|
||||||
"Self": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "App",
|
|
||||||
"Url": "http://localhost:49185/CacheList.axd",
|
|
||||||
"Desc": "测试系统",
|
|
||||||
"Self": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CacheItems": [
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "RoleHelper-RetrieveRolesByUserName",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "指定用户角色数据缓存"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "RoleHelper-RetrieveRolesByUrl",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过菜单获得角色数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "AppHelper-RetrieveAppsByUserName",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "指定用户授权应用数据缓存"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "BootstrapUser-RetrieveUsersByName",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "登录用户数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "BootstrapDict-RetrieveDicts",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "所有字典数据缓存"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "BootstrapMenu-RetrieveMenus",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "用户所有菜单数据缓存"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "GroupHelper-RetrieveGroupsByUserName",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "指定用户组数据缓存"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "UserHelper-RetrieveUsers",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "所有用户数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "UserHelper-RetrieveUsersByRoleId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过角色ID获得所有用户数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "UserHelper-RetrieveUsersByGroupId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过部门ID获得所有用户数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "UserHelper-RetrieveNewUsers",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "新用户数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "MenuHelper-RetrieveMenusByRoleId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过角色ID获得所有菜单数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "RoleHelper-RetrieveRoles",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "所有角色数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "RoleHelper-RetrieveRolesByUserId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过用户ID获得所有角色数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "RoleHelper-RetrieveRolesByMenuId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过菜单ID获得所有角色数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "RoleHelper-RetrieveRolesByGroupId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过部门ID获得所有角色数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "GroupHelper-RetrieveGroups",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "所有部门数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "GroupHelper-RetrieveGroupsByUserId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过用户ID获得所有部门数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "GroupHelper-RetrieveGroupsByRoleId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过角色ID获得所有部门数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "AppHelper-RetrieveAppsByRoleId",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "通过角色ID获得所有应用程序数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "DictHelper-RetrieveDictsCategory",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "字典分类数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "ExceptionHelper-RetrieveExceptions",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "程序异常数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "MessageHelper-RetrieveMessages",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "站内消息数据"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"Key": "TaskHelper-RetrieveTasks",
|
|
||||||
"Interval": 600000,
|
|
||||||
"SlidingExpiration": true,
|
|
||||||
"Desc": "所有任务数据"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -20,51 +20,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"ba": "Data Source=.;Initial Catalog=BootstrapAdmin;User ID=sa;Password=sa",
|
"ba": "Data Source=BootstrapAdmin.db;"
|
||||||
"bb": "Data Source=BootstrapAdmin.db;"
|
|
||||||
},
|
},
|
||||||
"AutoGenerateDatabase": false,
|
|
||||||
"DB": [
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "SqlServer",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Data Source=.;Initial Catalog=BootstrapAdmin;User ID=sa;Password=sa"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"ProviderName": "Sqlite",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Data Source=BootstrapAdmin.db;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "MySql",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Server=localhost;Database=BA;Uid=argozhang;Pwd=argo@163.com;SslMode=none;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "Npgsql",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Server=localhost;Database=BootstrapAdmin;User ID=argozhang;Password=argo@163.com;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"Widget": "Bootstrap.DataAccess.MongoDB",
|
|
||||||
"ProviderName": "MongoDB",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "mongodb://localhost:27017/BootstrapAdmin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"AppId": "BA",
|
"AppId": "BA",
|
||||||
"UseHttps": true,
|
|
||||||
"SwaggerPathBase": "",
|
|
||||||
"AllowOrigins": "http://localhost,http://admin.blazor.zone",
|
"AllowOrigins": "http://localhost,http://admin.blazor.zone",
|
||||||
"HealthsCloudUrl": "https://client.blazor.zone/api/Interface/Healths",
|
"HealthsCloudUrl": "https://client.blazor.zone/api/Interface/Healths",
|
||||||
"GiteeHealthChecks": false,
|
"GiteeHealthChecks": false,
|
||||||
|
|
|
@ -12,34 +12,5 @@
|
||||||
"BootstrapAdminAuthenticationOptions": {
|
"BootstrapAdminAuthenticationOptions": {
|
||||||
"AuthHost": "http://localhost:5210",
|
"AuthHost": "http://localhost:5210",
|
||||||
"KeyPath": "..\\..\\keys"
|
"KeyPath": "..\\..\\keys"
|
||||||
},
|
}
|
||||||
"DB": [
|
|
||||||
{
|
|
||||||
"Enabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"ProviderName": "Sqlite",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"bb": "..\\..\\admin\\BootstrapAdmin.Web\\BootstrapAdmin.db;",
|
|
||||||
"client": "Data Source=Client.db;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "MySql",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Server=localhost;Database=BootstrapAdmin;Uid=root;Pwd=argo@163.com;SslMode=none;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"Widget": "Bootstrap.Client.DataAccess.MongoDB",
|
|
||||||
"ProviderName": "MongoDB",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "mongodb://localhost:27017/BootstrapAdmin",
|
|
||||||
"client": "mongodb://localhost:27017/BootstrapClient"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,33 +18,5 @@
|
||||||
},
|
},
|
||||||
"BootstrapBlazorOptions": {
|
"BootstrapBlazorOptions": {
|
||||||
"DefaultCultureInfo": "zh-CN"
|
"DefaultCultureInfo": "zh-CN"
|
||||||
},
|
}
|
||||||
"DB": [
|
|
||||||
{
|
|
||||||
"Enabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": true,
|
|
||||||
"ProviderName": "Sqlite",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Data Source=..\\..\\admin\\BootstrapAdmin.Web\\BootstrapAdmin.db;",
|
|
||||||
"client": "Data Source=Client.db;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"ProviderName": "MySql",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "Server=localhost;Database=BootstrapAdmin;Uid=argozhang;Pwd=argo@163.com;SslMode=none;"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Enabled": false,
|
|
||||||
"Widget": "Bootstrap.Client.DataAccess.MongoDB",
|
|
||||||
"ProviderName": "MongoDB",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"ba": "mongodb://localhost:27017/BootstrapAdmin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue