Files
GoComicMosaic/README.md

109 lines
4.5 KiB
Markdown
Raw Permalink Normal View History

2025-05-29 16:01:06 +08:00
# GoComicMosaic
2025-08-13 13:13:48 +08:00
一款开源影视资源共建平台,不同用户可以自由提交资源信息(标题、类型、简介、图片、资源链接),像马赛克一样,由多方贡献拼凑成完整资源。 集成网盘搜索、分季分集剧集信息查看、在线点播(支持采集解析和自定义爬虫)等功能
2025-05-29 17:24:02 +08:00
2025-05-29 17:58:02 +08:00
正式上线地址https://dm.xueximeng.com/
2025-05-29 17:24:02 +08:00
2025-08-13 13:13:48 +08:00
Demo演示https://demo.xueximeng.com/
2025-06-09 08:14:49 +08:00
管理员账号admin / admin123
2025-05-29 17:58:02 +08:00
如果喜欢点个star
---
## Docker一键部署
```
docker run -d --name dongman \
-p 80:80 -p 443:443 \
-v /your/local/path:/app/data \
-e DOMAIN=your-domain.com \
2011820123/gcm:latest
```
如需启用HTTPS需要在挂载目录中放置SSL证书
1. 创建SSL证书目录
```bash
mkdir -p /your/local/path/ssl
```
2. 复制证书文件(必须使用这些文件名):
```bash
cp /path/to/your/fullchain.pem /your/local/path/ssl/
cp /path/to/your/privkey.pem /your/local/path/ssl/
```
2025-08-07 19:06:22 +08:00
## 首页
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/1.jpg)
2025-05-29 17:58:02 +08:00
2025-08-07 19:06:22 +08:00
## 详情页
2025-05-29 17:58:02 +08:00
2025-08-07 19:06:22 +08:00
点击「盘搜」按钮,一键搜索各种网盘资源
2025-05-29 17:58:02 +08:00
2025-08-07 19:06:22 +08:00
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/pansou.gif)
点击「剧集探索」按钮,可以查看分季分集信息
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/30.gif)
可以一键生成分享海报和链接
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/29.gif)
一键在线点播
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/dianbo.gif)
2025-05-29 17:58:02 +08:00
2025-08-13 13:13:48 +08:00
也可以直接在`https://域名/streams`页面点播,支持采集解析和自定义爬虫
2025-05-29 17:58:02 +08:00
2025-08-07 19:06:22 +08:00
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/streams.gif)
## 全面支持管理后台设置网站信息和采集解析源
目前美漫共建官网内置30条数据源
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/26.gif)
## 支持外挂在线播放数据源(自定义爬虫)
会写爬虫的用户可以自己添加数据源,更加灵活。参考[外接数据源开发者文档](https://github.com/fish2018/GoComicMosaic/blob/main/docs/%E5%A4%96%E6%8E%A5%E6%95%B0%E6%8D%AE%E6%BA%90%E5%BC%80%E5%8F%91%E6%96%87%E6%A1%A3.md),提供[爬虫示例及模板](https://github.com/fish2018/GoComicMosaic/tree/main/docs/%E5%A4%96%E6%8E%A5%E6%95%B0%E6%8D%AE%E6%BA%90%E7%A4%BA%E4%BE%8B%E5%8F%8A%E6%A8%A1%E6%9D%BF)
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/27.gif)
2025-05-29 17:58:02 +08:00
## 提交资源
这个才是资源共建平台的核心,点击右上角的'提交资源',用户可以随意提交自己喜欢的动漫资源,如果网站还不存该美漫时,会是一个新建资源的表单,需要填写中文名、英文名、类型、简介等基础信息。提交后,要等管理员在后台审批完才会在首页显示
### 提交-新建资源
2025-08-07 19:06:22 +08:00
支持从TMDB搜索、预览、一键导入资源
![image|690x397](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/28.gif)
2025-05-29 17:58:02 +08:00
### 提交-补充资源
顾名思义,就是对已经存在的动漫资源补充一些信息,主要是图片、资源链接
补充提交有2个入口一个是右上角的'提交资源',搜索已经存在的动漫名,然后选择确认即可
2025-06-11 20:13:17 +08:00
![image|690x396](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/10.jpg)
2025-05-29 17:58:02 +08:00
2025-06-11 20:13:17 +08:00
![补充资源|690x392](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/11.gif)
2025-05-29 17:58:02 +08:00
从资源详情页点击'补充资源'按钮,不用自己再搜索选择了,自动绑定对应的动漫
2025-06-11 20:13:17 +08:00
![详情页补充|690x392](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/12.gif)
2025-05-29 17:58:02 +08:00
## 管理控制台
主要用于审批用户提交的资源
2025-06-11 20:13:17 +08:00
![image|690x398](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/14.jpg)
2025-05-29 17:58:02 +08:00
审批用户提交的资源
2025-06-11 20:13:17 +08:00
![后台审批|690x391](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/15.gif)
2025-05-29 17:58:02 +08:00
## 资源编辑(管理员权限)
管理员在动漫详情页面,可以进行编辑,修改中英文标题、简介、类型、图片增删、海报设置、修改添加资源链接等
2025-06-11 20:13:17 +08:00
![image|690x365](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/16.jpg)
![image|690x303](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/17.jpg)
2025-05-29 17:58:02 +08:00
2025-06-11 20:13:17 +08:00
![详情编辑|690x391](https://raw.githubusercontent.com/fishforks/imgs/refs/heads/main/gcm/18.gif)
2025-05-29 17:58:02 +08:00
2025-06-02 03:06:49 +08:00
2025-06-02 13:13:21 +08:00
2025-06-03 13:18:57 +08:00
2025-06-03 16:52:23 +08:00
2025-06-05 11:34:47 +08:00