You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
backSQL/config.js

11 lines
233 B

1 year ago
const SERVER_PORT = 5000;
// 数据库名称
const DATABASELIST = ['procatch-cloud', 'procatch-config', 'procatch-flowable'];
1 year ago
const SERVERHOST = '192.168.1.200'
1 year ago
module.exports = {
1 year ago
SERVER_PORT,
1 year ago
DATABASELIST,
SERVERHOST
1 year ago
}