surl-front/README.md
2024-08-15 13:58:49 +08:00

783 B

surl front

短链接生成系统, 基于Vue3的前端

配置项

配置后端接口信息

配置src/stores/siteconfig-store.js中的两个变量

  • protocol 协议,默认为http
  • host 主机+端口号,默认为localhost:18888

部署

容器部署

  1. 准备dockerdocker compose环境
  2. 按需修改 nginx.conf 运行 docker compose up -d 启动容器即可

本地部署

  1. 安装依赖

    sudo apt install nodejs npm nginx
    npm install
    
  2. 配置nginx

    • 按需修改nginx.conf,并复制到/etc/nginx/sites-enabled/default
    • 运行sudo nginx -t检查配置
    • 执行编译 npm run build
    • dist下的内容复制到/usr/share/nginx/html
    • 运行sudo nginx -s reload