first commit

This commit is contained in:
编码猿
2024-09-27 01:14:21 +08:00
commit 5ddcc17391
52 changed files with 1176 additions and 0 deletions

1
app/src/config/.pydio Normal file
View File

@@ -0,0 +1 @@
7a10511f-a00c-487f-8773-a6c2d04b1577

37
app/src/config/index.ts Normal file
View File

@@ -0,0 +1,37 @@
export default {
servicesList: [
{
name: 'gateway',
id: 'gateway_id',
tags: ['Api 网关'],
address: '192.168.31.203',
port: 8080
},
{
name: 'user',
id: 'user_id',
tags: ['user模块', '登录'],
address: '192.168.31.203',
port: 3002,
check: {
http: 'http://192.168.31.203:3002/user/health',
interval: '10s',
timeout: '5s',
notes: '服务正常',
}
},
{
name: 'articles',
id: 'articles_id',
tags: ['articles模块', '文章'],
address: '192.168.31.203',
port: 3003,
check: {
http: 'http://192.168.31.203:3003/articles/health',
interval: '10s',
timeout: '5s',
notes: '服务正常',
}
}
]
}