bbcovert/readme.md

36 lines
602 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# BBcovert
> 本项目可以将phpbb论坛中的帖子和评论内容转换成纯静态页面
## 运行
> 请在字符集设置为utf-8的linux下运行
```sh
# 请先配置config.toml!
# 从sample复制
cp config.sample.toml config.toml
# 初始化虚拟环境,推荐先换源
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# 下载数据库
python dump.py
# 生成静态页面
python render.py
# 测试生成
python test.py
```
## 结构
`theme` 文件夹内是主题文件
数据库会被下载到 `dump` 文件夹
生成产物在 `build` 文件夹