first commit
This commit is contained in:
1
app/src/config/.pydio
Normal file
1
app/src/config/.pydio
Normal file
@@ -0,0 +1 @@
|
||||
7a10511f-a00c-487f-8773-a6c2d04b1577
|
||||
37
app/src/config/index.ts
Normal file
37
app/src/config/index.ts
Normal 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: '服务正常',
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user