https://mp.weixin.qq.com/s/dkQVEkSYBnxsqFBrdubMFQ

https://im.gzydong.com/message

预览账号:18798272054 / 密码: admin123

预览账号:18798272055 / 密码: admin123

https://gitee.com/gzydong/go-chat

https://gitee.com/gzydong/LumenIM

https://github.com/gzydong/LumenIM

代码仓库 前端源码 后端源码
Github https://github.com/gzydong/LumenIM https://github.com/gzydong/go-chat
码云 https://gitee.com/gzydong/LumenIM https://gitee.com/gzydong/go-chat

项目介绍
Lumen IM 是一个网页版在线聊天项目,前端使用 Naive UI + Vue3,后端采用 GO 开发。

功能介绍
基于 WebSocket 服务做消息即时推送
支持私聊及群聊
支持多种聊天消息类型 例如:文本、代码块、图片及其它类型文件,并支持文件下载
支持聊天消息撤回、删除(批量删除)、转发消息(逐条转发、合并转发)、群禁言
支持编写个人笔记、支持笔记分享(好友或群)
部署安装
安装Docker
curl -sSL https://get.docker.com/ | sh
下载安装

克隆项目源码包

git clone https://gitee.com/gzydong/LumenIM.git

git clone https://github.com/gzydong/LumenIM.git

安装项目依赖扩展组件

yarn install

启动本地开发环境

yarn dev

启动本地开发环境桌面客户端

yarn electron:dev

生产环境构建项目

yarn build

生产环境桌面客户端打包

yarn electron:build
修改 .env 配置信息
VITE_BASE_API=http://127.0.0.1:9503
VITE_SOCKET_API=ws://127.0.0.1:9504
Nginx 的一些配置
server {
    listen       80;
    server_name  www.yourdomain.com;

    root /project-path/dist;
    index  index.html;

    location / {
      try_files $uri $uri/ /index.html;
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
        expires 7d;
    }

    location ~ .*\.(js|css)?$ {
        expires 7d;
    }
}

Web访问
Demo地址:https://im.gzydong.com/message
点击下面的账户即可完成登录

文档更新时间: 2024-04-14 23:44   作者:admin