CaffeBruncherはTwitterとMisskeyに同時投稿を行なうツールです。
Tools to post to Twitter and Misskey at the same time.
TwitterにAPIを止められてしまったので開発は無期限停止です
以下のコマンドを実行します
git clone https://github.com/cffnpwr/caffe-bruncher-frontend.git
cd caffe-bruncher-frontend
yarn install
.env.development
もしくは.env.development.local
を作成し、以下の内容を記述します
CK=[your consumer key for twitter API]
CS=[your consumer secret for twitter API]
TW_OAUTH_CALLBACK=http://localhost:3000/twitter_callback
MK_CALLBACK=http://localhost:3000/misskey_callback
以下のコマンドを実行します
yarn dev
.env.production
もしくは.env.production.local
を作成し、以下の内容を記述します
CK=[your consumer key for twitter API]
CS=[your consumer secret for twitter API]
TW_OAUTH_CALLBACK=[your server's URL]/twitter_callback # e.g. https://hogehoge.com/twitter_callback
MK_CALLBACK=[your server's URL]/misskey_callback # e.g. https://hogehoge.com/misskey_callback
以下のコマンドを実行します
yarn build
開発はdevelopment
ブランチで行なわれています