智慧工地前端
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.
 
 
 
 
 
smart-factory/server/config.js

30 lines
798 B

module.exports = {
env: {
development: {
formBaseURL: 'dev-api',
// 其他开发环境配置
},
test: {
baseURL: 'http://test.example.com/api',
// 其他测试环境配置
},
production: {
baseURL: 'http://example.com/api',
// 其他生产环境配置
}
},
database: {//数据库配置
host: '39.100.74.100',
port: '3306',
user: 'root',
password: 'root@123456',
database: 'zilberboot'
},
server: {
port: 3095,
ryRedirect: 'http://39.100.74.100:8080' //重定向java服务地址
},
camunda: {
base: `http://39.100.90.227:1111` //camunda服务地址
},
};