fit2bot a34b2c7074 perf: update copy icon (#4692)
* perf: update change secret overview

* fix: Typo in latest_secret_change_failed

* Fixed: Fix dialog display order problem

* Fixed: Fix: Password field disappears during user update (#4687)

* fix: Update resource names and permissions for account backup automation

* Fixed: Fix: Password field disappears during user update

* Fixed: Account Change Secret Record List

* perf: update i18n

* perf: update copy icon

---------

Co-authored-by: ibuler <ibuler@qq.com>
Co-authored-by: w940853815 <940853815@qq.com>
Co-authored-by: zhaojisen <1301338853@qq.com>
2025-02-27 17:13:03 +08:00
2024-12-09 16:20:12 +08:00
2024-10-15 13:58:56 +08:00
2025-02-27 17:13:03 +08:00
2023-02-28 16:36:48 +08:00
2025-02-05 16:34:17 +08:00
2024-07-23 16:52:36 +08:00
2025-02-06 12:48:16 +08:00
2025-02-21 15:13:54 +08:00
2025-02-21 15:13:54 +08:00
2025-02-21 15:13:54 +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 54 MiB
Languages
Vue 82.5%
JavaScript 14.1%
SCSS 2.3%
CSS 0.7%
Python 0.2%