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.
|
|
|
|
/*
|
|
|
|
|
* @Author: ch
|
|
|
|
|
* @Date: 2022-05-05 14:40:00
|
|
|
|
|
* @LastEditors: ch
|
|
|
|
|
* @LastEditTime: 2022-05-05 18:07:18
|
|
|
|
|
* @Description: 根据git分支生成对应环境的环境变量
|
|
|
|
|
* 开发时如果环境变量换了,可以不用重启服务,直接运行node env.config.js即可
|
|
|
|
|
*/
|
|
|
|
|
const fs = require('fs');
|
|
|
|
|
const path = require('path');
|
|
|
|
|
const getRepoInfo = require('git-repo-info');
|
|
|
|
|
|
|
|
|
|
const envConfig = {
|
|
|
|
|
dev : {
|
|
|
|
|
base_url: 'dev'
|
|
|
|
|
},
|
|
|
|
|
test : {
|
|
|
|
|
base_url: 'xxx'
|
|
|
|
|
},
|
|
|
|
|
reslese : {
|
|
|
|
|
base_url: 'xxx'
|
|
|
|
|
},
|
|
|
|
|
prod : {
|
|
|
|
|
base_url: 'xxx'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const branch = getRepoInfo().branch; // 调用获取git信息
|
|
|
|
|
let curEnvConfig = {};
|
|
|
|
|
switch (branch){
|
|
|
|
|
case 'msb_test':
|
|
|
|
|
curEnvConfig = envConfig.test;
|
|
|
|
|
break;
|
|
|
|
|
case 'msb_beta':
|
|
|
|
|
curEnvConfig = envConfig.release;
|
|
|
|
|
break;
|
|
|
|
|
case 'msb_prod':
|
|
|
|
|
curEnvConfig = envConfig.prod;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
curEnvConfig = envConfig.dev;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
fs.writeFileSync(`${path.resolve(__dirname, '../common/config')}/env.js`,
|
|
|
|
|
`const ENV = ${JSON.stringify(curEnvConfig)}; export default ENV;`);
|