activity-pub-relay

開発ガイド

必要なソフトウェアなど

セットアップ

Ruby と Docker をインストール

Ruby 3.3.6 とDocker をインストールしてください。 Rubyについてはrbenvなどのバージョン管理ツールを使ってインストールするのがオススメです。

ソースコードのclone

git clone https://github.com/S-H-GAMELINKS/activity-pub-relay.git

clone 後、activity-pub-relayディレクトリへ移動します。

ActivityPub Relayのセットアップ

bundle install を実行します。

bundle install

その後、bin/rails db:create db:setupを実行します。

bin/rails db:create db:setup db:seed

あとはbin/devでサーバを起動します。

bin/dev

localhost:3000にアクセスできればセットアップは完了です。

テストの実行

テストはbin/rspec で実行します。

bin/rspec

Rubocopの実行

Rubocopはbin/rubocop で実行します。

bin/rubocop