Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Latest commit

 

History

History
49 lines (29 loc) · 1005 Bytes

deploy-admin.md

File metadata and controls

49 lines (29 loc) · 1005 Bytes

LunaAI管理后台部署文档

0. 介绍

技术栈:vue3 + typescript + ElementUI Plus

1. 环境要求

  • Node.js: 开发编译使用Node版本号需要不低于18.0

2. 安装依赖

进入项目目录admin,执行以下命令:

yarn install

3. 配置后端域名

  • 复制项目根目录.env.development.example文件为.env.development,把后端域名填写到对应位置
  • 复制项目根目录.env.production.example文件为.env.production,把后端域名填写到对应位置

4. 运行 & 编译

执行以下命令:

yarn dev 
  • 浏览器访问:http://localhost:5173/admin/

  • 填写管理员账号/密码是 loxi / 123456

  • 登录进入后台,如果能进入后台则运行成功

执行以下命令编译打包:

yarn build

5. 部署

  • dist文件夹上传到服务器,重命名为admin
  • 配置Nginx指向admin目录即可
  • 访问域名+后缀/admin即可进入打开后台登录页面