環境設定などはやっぱり一番面倒ですね。。このノートの主な目的は、さまざまなコマンドを一緒に貼って、自分自身がコピーして使用できるようにすることです。
プラグインの作成 - RSSerpent ドキュメント:
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