Commit 3a86157a by lixinming

no message

parent 8363653c
//端口
export function getPort() : number {
return Number(process.env.PORT) || Number(process.argv[3]) || 7474;
return Number(process.env.PORT) || Number(process.argv[3]) || 999;//测试环境7474
}
// sit 测试环境 prod 生产环境 dem 演示环境(测试数据,前端无密码访问)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment