https://github.com/cyanchanges/nonebot.dev
Documentation for Koishi
https://github.com/cyanchanges/nonebot.dev
Last synced: 4 months ago
JSON representation
Documentation for Koishi
- Host: GitHub
- URL: https://github.com/cyanchanges/nonebot.dev
- Owner: CyanChanges
- License: mit
- Created: 2024-02-25T09:50:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T12:03:35.000Z (over 1 year ago)
- Last Synced: 2025-05-09T00:16:58.703Z (about 1 year ago)
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nonebot.dev
简单方便的自建 " Nonebot 文档 "
Nonebot docs alias for Koishi Document
> [!NOTE]
> \* Currently, no public deploy supported
> \* 暂不支持公共部署
## Requirements | 要求
- caddy
80 and 443 ports available
80 和 443 端口未被占用
### TLS Support | TLS 支持
See
## Quick Start | 快速开始
### Clone | 克隆存储库
#### Git
```sh
git clone [https://](https://github.com/CyanChanges/nonebot.dev)https://github.com/CyanChanges/nonebot.dev
```
#### GitHub CLI
```sh
gh repo clone CyanChanges/nonebot.dev
```
### Run Server | 启动!
```sh
cd nonebot.dev
caddy start -c Caddyfile
```
### Modify Hosts | 修改 Hosts 文件
#### Linux
SH:
```sh
sudo echo "127.0.0.1 nonebot.dev" >> /etc/hosts
```
Nushell:
```nu
echo "127.0.0.1 nonebot.dev" | save -a /etc/hosts
```
#### Microsoft Windows | M$ 视窗
Open `C:\Windows\System32\drivers\etc\hosts`
with your favourite editor (`nodepad`, `code`, `nvim`, etc.) as Administrator
用你喜欢的编辑器
打开 `C:\Windows\System32\drivers\etc\hosts` (需要以管理员权限运行)
Add following line at the end of the hosts file
加入以下内容到文件结尾
```hosts
127.0.0.1 nonebot.dev
```