dependabot[bot] 9fd05f6dbb chore(deps): bump lodash-es from 4.17.21 to 4.18.1
Bumps [lodash-es](https://github.com/lodash/lodash) from 4.17.21 to 4.18.1.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.21...4.18.1)

---
updated-dependencies:
- dependency-name: lodash-es
  dependency-version: 4.18.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-02 07:28:36 +00:00
2026-04-01 10:28:17 +08:00
2025-03-18 11:24:57 +08:00
2025-10-30 14:09:50 +08:00
2023-02-28 16:36:48 +08:00
2020-06-09 16:48:12 +08:00
2019-04-19 20:41:52 +08:00
2025-10-27 14:38:12 +08:00
2025-02-05 16:34:17 +08:00
2020-09-15 16:26:11 +08:00
2025-09-05 16:39:37 +08:00
2019-04-26 17:58:55 +08:00
2024-07-23 16:52:36 +08:00
2019-04-19 20:41:52 +08:00
2025-02-06 12:48:16 +08:00
2021-12-06 18:03:36 +08:00
2021-03-29 19:29:06 +08:00
2025-09-05 16:39:37 +08:00
2022-04-01 15:24:09 +08:00

Lina

Lina 是 JumpServer 的前端 UI 项目, 主要使用 Vue, Element UI 完成, 名字来源于 Dota 英雄 Lina

开发运行

0. 前置条件: 部署运行好 JumpServer API 服务器

1. 安装依赖
$ yarn install

2. 修改 .env.development VUE_APP_CORE_HOST
# ...
VUE_APP_CORE_HOST = 'JUMPSERVER_APIHOST'

3. 运行
$ yarn serve

4. 构建
$ yarn build:prod

生产中部署

下载 RELEASE 文件,放到合适的目录,修改 nginx配置文件如下

server {
  listen 80;

  location /ui/ {
    try_files $uri / /ui/index.html;
    alias /opt/lina/;
  }

  location / {
    rewrite ^/(.*)$ /ui/$1 last;
  }
}

致谢

Be consistent with jumpserver

Description
Lina 是 JumpServer 的前端 UI 项目
Readme GPL-3.0 62 MiB
Languages
Vue 82.4%
JavaScript 14.2%
SCSS 2.3%
CSS 0.7%
Python 0.2%