mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-22 07:08:04 +00:00
📝 Update README.md
Thanks to the abyss data provided by DGP HuTao API
This commit is contained in:
parent
c4712f0b07
commit
055740edc1
@ -88,7 +88,7 @@ poetry install --extras all
|
|||||||
**Edit Config:**
|
**Edit Config:**
|
||||||
|
|
||||||
Create a dotenv config (`.env`) based on the given example. Ensure to provide the necessary database connection
|
Create a dotenv config (`.env`) based on the given example. Ensure to provide the necessary database connection
|
||||||
details and bot token parameters.
|
details and bot token parameters.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cp .env.example .env
|
cp .env.example .env
|
||||||
@ -134,3 +134,4 @@ Stay tuned!
|
|||||||
| [Crawler-ghhw](https://github.com/DGP-Studio/Crawler-ghhw) | 本项目参考的爬虫代码 |
|
| [Crawler-ghhw](https://github.com/DGP-Studio/Crawler-ghhw) | 本项目参考的爬虫代码 |
|
||||||
| [Enka.Network](https://enka.network) | 角色卡片的数据来源 |
|
| [Enka.Network](https://enka.network) | 角色卡片的数据来源 |
|
||||||
| [miao-plugin](https://github.com/yoimiya-kokomi/miao-plugin) | 角色卡片的参考项目 |
|
| [miao-plugin](https://github.com/yoimiya-kokomi/miao-plugin) | 角色卡片的参考项目 |
|
||||||
|
| [DGP HuTao API](https://hut.ao/en/) | 深渊数据来源 |
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
|
|
||||||
基于 [python-telegram-bot](https://github.com/python-telegram-bot/python-telegram-bot) 的 PaiGram
|
基于 [python-telegram-bot](https://github.com/python-telegram-bot/python-telegram-bot) 的 PaiGram
|
||||||
|
|
||||||
|
|
||||||
![Alt](https://repobeats.axiom.co/api/embed/f73c1121006cb86196f83da2170242b7a97f8be0.svg "Repobeats analytics image")
|
![Alt](https://repobeats.axiom.co/api/embed/f73c1121006cb86196f83da2170242b7a97f8be0.svg "Repobeats analytics image")
|
||||||
|
|
||||||
## 环境需求
|
## 环境需求
|
||||||
@ -33,6 +32,7 @@
|
|||||||
### 标准设置(所有环境)
|
### 标准设置(所有环境)
|
||||||
|
|
||||||
#### 1. 从 Git 克隆 PaiGram
|
#### 1. 从 Git 克隆 PaiGram
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone git@github.com:PaiGramTeam/PaiGram.git
|
git clone git@github.com:PaiGramTeam/PaiGram.git
|
||||||
cd PaiGram/
|
cd PaiGram/
|
||||||
@ -44,6 +44,7 @@ git submodule update --init --recursive
|
|||||||
建议使用虚拟环境。您可以通过 `venv` 或 `virtualenv` 进行设置。
|
建议使用虚拟环境。您可以通过 `venv` 或 `virtualenv` 进行设置。
|
||||||
|
|
||||||
**创建虚拟环境:**
|
**创建虚拟环境:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3 -m venv venv
|
python3 -m venv venv
|
||||||
```
|
```
|
||||||
@ -51,16 +52,19 @@ python3 -m venv venv
|
|||||||
**激活虚拟环境:**
|
**激活虚拟环境:**
|
||||||
|
|
||||||
*对于 Linux:*
|
*对于 Linux:*
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
```
|
```
|
||||||
|
|
||||||
*对于 Windows 命令提示符:*
|
*对于 Windows 命令提示符:*
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
venv\Scripts\activate.bat
|
venv\Scripts\activate.bat
|
||||||
```
|
```
|
||||||
|
|
||||||
*对于 Windows PowerShell:*
|
*对于 Windows PowerShell:*
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
.\venv\Scripts\Activate.ps1
|
.\venv\Scripts\Activate.ps1
|
||||||
```
|
```
|
||||||
@ -105,9 +109,11 @@ python ./run.py
|
|||||||
|
|
||||||
### 其他部署方法
|
### 其他部署方法
|
||||||
|
|
||||||
- **Docker:** 对于使用 Docker 的部署,请参阅[Wiki/使用 Docker 部署](https://github.com/PaiGramTeam/PaiGram/wiki/Deploy-with-Docker)。
|
- **Docker:** 对于使用 Docker
|
||||||
|
的部署,请参阅[Wiki/使用 Docker 部署](https://github.com/PaiGramTeam/PaiGram/wiki/Deploy-with-Docker)。
|
||||||
|
|
||||||
- **Podman:** 对于使用 Podman 的部署,请参阅[Wiki/使用 Podman 部署](https://github.com/PaiGramTeam/PaiGram/wiki/Deploy-with-Podman)。
|
- **Podman:** 对于使用 Podman
|
||||||
|
的部署,请参阅[Wiki/使用 Podman 部署](https://github.com/PaiGramTeam/PaiGram/wiki/Deploy-with-Podman)。
|
||||||
|
|
||||||
## 其他说明
|
## 其他说明
|
||||||
|
|
||||||
@ -122,4 +128,4 @@ python ./run.py
|
|||||||
| [Yunzai-Bot](https://github.com/Le-niao/Yunzai-Bot) | 本项使用的抽卡图片和前端资源来源 |
|
| [Yunzai-Bot](https://github.com/Le-niao/Yunzai-Bot) | 本项使用的抽卡图片和前端资源来源 |
|
||||||
| [Crawler-ghhw](https://github.com/DGP-Studio/Crawler-ghhw) | 本项目参考的爬虫代码 |
|
| [Crawler-ghhw](https://github.com/DGP-Studio/Crawler-ghhw) | 本项目参考的爬虫代码 |
|
||||||
| [Enka.Network](https://enka.network) | 角色卡片的数据来源 |
|
| [Enka.Network](https://enka.network) | 角色卡片的数据来源 |
|
||||||
| [miao-plugin](https://github.com/yoimiya-kokomi/miao-plugin) | 角色卡片的参考项目 |
|
| [DGP 胡桃 API](https://hut.ao/zh/) | 深渊数据来源 |
|
||||||
|
Loading…
Reference in New Issue
Block a user