Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tangsengdaodao/tangsengdaodaoweb
唐僧叨叨即时通讯(IM) Web/PC 端
https://github.com/tangsengdaodao/tangsengdaodaoweb
chat gochat im imserver message messaging openim telegram wechat
Last synced: about 1 month ago
JSON representation
唐僧叨叨即时通讯(IM) Web/PC 端
- Host: GitHub
- URL: https://github.com/tangsengdaodao/tangsengdaodaoweb
- Owner: TangSengDaoDao
- Created: 2023-07-06T01:30:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-19T14:27:55.000Z (7 months ago)
- Last Synced: 2024-05-19T14:40:38.884Z (7 months ago)
- Topics: chat, gochat, im, imserver, message, messaging, openim, telegram, wechat
- Language: TypeScript
- Homepage: https://tangsengdaodao.com
- Size: 4.03 MB
- Stars: 65
- Watchers: 3
- Forks: 57
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 唐僧叨叨 PC 端
📚 [在线文档](https://tsdaodao.com/) | 🚀 [演示地址](https://web.botgate.cn/)(账号/密码:15900000002/a1234567)
## 简介
唐僧叨叨 PC 端支持 Web 端、Mac 端、Windows 端、Linux 端,是一款高颜值 IM 即时通讯聊天软件,让企业轻松拥有自己的即时通讯软件。由[悟空 IM](https://githubim.com/)提供动力。
## Web 版本运行
> [!TIP]
> 本地开发建议`node v18.17.1`、 `yarn 1.22.17`1. 安装依赖
```shell
yarn install 或者 yarn bootstrap
```2. 本地开发调试
```shell
yarn dev
```3. 编译
```shell
yarn build
```4. 发布镜像
> [!TIP]
> 修改 api 地址 packages/tsdaodaoweb/src/index.tsx 修改 WKApp.apiClient.config.apiURL = "/api/v1/"```shell
make deploy
```5. 清除缓存
```sh
yarn clean
```## Electron 版本运行
支持打包 Mac、Windows、Linux 操作系统桌面应用。
1. 安装依赖
```shell
yarn install
```2. 本地开发调试
```shell
yarn dev-ele
```3. 编译
```shell
yarn build
```4. Mac APP 打包
> [!TIP]
> 注意先运行`yarn build`编译```shell
yarn build-ele:mac
```5. Windows APP 打包
> [!TIP]
> 注意先运行`yarn build`编译```shell
yarn build-ele:win
````注意,此命令需要在apps/web下执行`
5. Linux APP 打包
> [!TIP]
> 注意先运行`yarn build`编译```shell
yarn build-ele:linux
```