1.5 KiB
fediverse-imagebot
A bot that posts images to the Fediverse.
Should be compatible with Mastodon, Misskey and Pleroma!
Quick start guide
-
You need to have
npm
andnodejs
installed. -
Install
yarn
:
npm install --global yarn
- This may be need to ran with
sudo
depending on your installation.
-
Clone the repository:
git clone https://git.freecumextremist.com/NotSam/fediverse-imagebot.git
-
Install dependencies:
yarn
-
Build:
yarn build
-
Obtain a token. This can be done with an external tool or obtained by running
yarn token
and following the directions.
yarn token
will generate a configuration file located atconfig.json
- Put images in the
images
folder.
- By default the bot will look for SFW images at
images/sfw
and NSFW images atimages/nsfw
. This can be configured.
- Run the bot:
yarn bot
You're done! The bot should post an image to the fediverse instance of your choosing!
Automating the bot
TODO: Elaborate more
The bot can be automated to post images at set times using a cronjob.
Example cron configuration:
0 * * * * cd /path/to/fediverse-imagebot && yarn bot -m "Message"
This example will run the bot every hour on the hour with the post message Message
.
Additional information
Additional help can be found by running yarn bot -h
or yarn token -h
.