環境配置什麼的果然是最麻煩的。。這篇筆記的主要作用還是把各種命令貼在一起供我自己複製使用;
創建插件 - RSSerpent Docs:
https://docs.rsserpent.com/latest/zh/contribution/plugin/
# 使用模板創建一個新插件
cookiecutter gh:rsserpent/template
# rsserpent-plugin-manhuagui
# 前綴部分需要手動輸入
# 進入目錄
cd rsserpent-plugin-manhuagui
# 進入 poetry 虛擬環境
poetry shell
# 運行
uvicorn rsserpent:app --host '0.0.0.0' --port 1202 --reload
提交前的規範化檢查
# 進入 poetry 虛擬環境
poetry shell
# 需要首暫存修改
git add .
# 執行檢查
pre-commit run --all-files