This commit is contained in:
xiaolipro 2025-01-02 18:19:49 +08:00
parent 87f096e0e6
commit a4350fda66
2 changed files with 18 additions and 7 deletions

View File

@ -28,23 +28,32 @@
] ]
}, },
"ConnectionStrings": { "ConnectionStrings": {
"Default": "server=baget.xiaolipro.cn;database=interface_forward;uid=dev;pwd=itd!@#123;charset=utf8mb4;" "Default": "server=129.204.22.146;database=interface_forward;uid=dev;pwd=itd!@#123;charset=utf8mb4;"
}, },
"FeiShuNotice": { "FeiShuNotice": {
"Title": "InterfaceForward-Dev", "Title": "InterfaceForward-Dev",
"Webhook": "https://open.feishu.cn/open-apis/bot/v2/hook/255c44ff-5891-4902-9b6a-6d0250e745f7", "Webhook": "https://open.feishu.cn/open-apis/bot/v2/hook/255c44ff-5891-4902-9b6a-6d0250e745f7",
"Timeout": 20 "Timeout": 20
}, },
"Redis": {
"Host": "129.204.22.146:6379",
"Password": "itd!@#123",
"MaxPoolSize": 1000,
"Database": 0,
"Prefix": ""
},
"RabbitMQ": { "RabbitMQ": {
"Connections": {
"Default": { "Default": {
"Host": "baget.xiaolipro.cn", "Host": "129.204.22.146",
"Port": 5672, "Port": 5672,
"UserName": "dev", "UserName": "dev",
"Password": "itd!@#123" "Password": "itd!@#123"
} }
}
}, },
"ElasticSearch": { "ElasticSearch": {
"NodeUrls": [ "http://elasticsearch-dev.default.svc.cluster.local:9200" ], "NodeUrls": [ "http://129.204.22.146:9200" ],
"LoginName": "elastic", "LoginName": "elastic",
"Password": "afyTgmVb8jq6", "Password": "afyTgmVb8jq6",
"Base64PassPassword": "Basic ZWxhc3RpYzphZnlUZ21WYjhqcTY=" "Base64PassPassword": "Basic ZWxhc3RpYzphZnlUZ21WYjhqcTY="

View File

@ -3,12 +3,14 @@ using Fake.AspNetCore;
using Fake.EventBus.RabbitMQ; using Fake.EventBus.RabbitMQ;
using Fake.Modularity; using Fake.Modularity;
using Fake.ObjectMapping.AutoMapper; using Fake.ObjectMapping.AutoMapper;
using Fake.RabbitMQ;
using InterfaceForward.Application.Contracts; using InterfaceForward.Application.Contracts;
using InterfaceForward.Repositories; using InterfaceForward.Repositories;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
namespace InterfaceForward.Application; namespace InterfaceForward.Application;
[DependsOn(typeof(FakeRabbitMqModule))]
[DependsOn(typeof(FakeAspNetCoreModule))] [DependsOn(typeof(FakeAspNetCoreModule))]
[DependsOn(typeof(FakeObjectMappingAutoMapperModule))] [DependsOn(typeof(FakeObjectMappingAutoMapperModule))]
[DependsOn(typeof(FakeEventBusRabbitMqModule))] [DependsOn(typeof(FakeEventBusRabbitMqModule))]