Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Latest commit

 

History

History
65 lines (43 loc) · 1.7 KB

README.md

File metadata and controls

65 lines (43 loc) · 1.7 KB

CaffeBruncher

license release deploy

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ブランチで行なわれています