dev.env.js 859 Bytes
Newer Older
Nature's avatar
Nature committed
1 2 3 4 5 6 7
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')

module.exports = merge(prodEnv, {
  NODE_ENV: '"development"',
  CONFIG_ENV: JSON.stringify(process.env.CONFIG_ENV),
Nature's avatar
Nature committed
8 9 10 11 12 13 14
  debug: true,
  isMobilePlatform: false,
  appCode:'"HLS_APP"',
  clearTable: true,
  loginPath: '"http://hlsapp.hand-china.com/core/oauth/token?client_id=hQGCtxTItRa34PUOgxaD0r7oSPeuEaIB&client_secret=7ee8338c-4a06-44a1-87cc-afa63f8e1bc3&grant_type=password&username=app&password=" ',
  basePath: '"http://hlsapp.hand-china.com/core/r/api?sysName=HLS_APP&apiName="',
  rootPath: '"http://hlsapp.hand-china.com/core/r/api"',
Nature's avatar
Nature committed
15 16 17
  riskPath: '"http://hlsapp.hand-china.com/core/r/api/app/riskQuery?sysName=HLS_RISK&apiName="',
  riskKey: '"pIGBbSRyThA4Xg"',
  pushKey: '"45ace0e521f01edb2f1c753a"',
Nature's avatar
Nature committed
18
  file_url: '"http://hlsapp.hand-china.com/file/"',
Nature's avatar
Nature committed
19
});