11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
const SERVER_PORT = 5000;
|
|
// 数据库名称
|
|
const DATABASELIST = ['procatch-cloud', 'procatch-config', 'procatch-flowable'];
|
|
|
|
const SERVERHOST = '192.168.1.200'
|
|
|
|
module.exports = {
|
|
SERVER_PORT,
|
|
DATABASELIST,
|
|
SERVERHOST
|
|
} |