Lina 环境部署
- 是 JumpServer 的前端 UI 项目,主要使用 Vue, 完成。
1.2 选择部署方式
- 下载源代码。
- 从 Github 下载 Source code.tar.gz 源代码,通过命令行中提取该存档:
- 安装 Node。
- 从 官方网站参考文档部署 Node.js,请根据 环境要求,通过命令行中判断是否安装完成:
wget https://nodejs.org/download/release/v14.16.1/node-v14.16.1-linux-x64.tar.xz
tar -xf node-v14.16.1-linux-x64.tar.xz
mv node-v14.16.1-linux-x64 /usr/local/node
chown -R root:root /usr/local/node
export PATH=/usr/local/node/bin:$PATH
echo 'export PATH=/usr/local/node/bin:$PATH' >> ~/.bashrc
node -v
sed -i "s@Version <strong>.*</strong>@Version <strong>v3.0.1</strong>@g" src/layout/components/Footer/index.vue
vi .env.development
# 全局环境变量 请勿随意改动
ENV = 'development'
# base api
VUE_APP_BASE_API = ''
VUE_APP_PUBLIC_PATH = '/ui/'
# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
# to control whether the babel-plugin-dynamic-import-node plugin is enabled.
# It only does one thing by converting all import() to require().
# This configuration can significantly increase the speed of hot updates,
# when you have a large number of pages.
# Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js
VUE_CLI_BABEL_TRANSPILE_MODULES = true
# External auth
VUE_APP_LOGIN_PATH = '/core/auth/login/'
VUE_APP_LOGOUT_PATH = '/core/auth/logout/'
# Dev server for core proxy
VUE_APP_CORE_HOST = 'http://localhost:8080' # 修改成 Core 的 url 地址
VUE_APP_CORE_WS = 'ws://localhost:8070'
VUE_APP_ENV = 'development'
yarn build
cp -rf lina lina-v3.0.1
tar -czf lina-v3.0.1.tar.gz lina-v3.0.1
- 下载 Release 文件,从 网站上获取最新的 Release 副本。
- 这些版本是最新代码的稳定快照。
cd /opt