@shuyun-ep-team/loktar-portal
v3.17.5
Published
数云企业版实施端Portal项目
Downloads
19
Keywords
Readme
数云企业版集成子应用开发的Portal项目
为了方便子应用在开发时就与Portal
环境进行集成,所以发布此项目作为子应用的入口项目。
如何使用
- 安装依赖
npm install -D @shuyun-ep-team/loktar-portal
- 设置子应用配置
执行命令
node ./node_modules/@shuyun-ep-team/loktar-portal/generate-html.js --configPath ./app.config.js
该命令会将app.config.js
文件中的配置写进 node_modules/@shuyun-ep-team/loktar-portal/index.html
文件。
建议将该命令配置到 package.json
的 scripts
里面。
- 设置本地服务静态文件目录
app.use('/', express.static(process.cwd() + '/node_modules/@shuyun-ep-team/loktar-portal'));
// js、css
app.use('/implement', express.static(process.cwd() + '/node_modules/@shuyun-ep-team/loktar-portal'));
何时需要执行第二步
- 安装
@shuyun-ep-team/loktar-portal
后 - 更改
app.config.js
文件内容后