No description
Find a file
frank 64a284ea51
All checks were successful
Test Runner / test (push) Successful in 56s
examplefile_for_env.txt aktualisiert
2025-03-21 06:40:56 +00:00
.forgejo/workflows .forgejo/workflows/test.yaml aktualisiert 2025-03-19 17:08:03 +00:00
images add image 2023-08-01 18:06:02 +02:00
examplefile_for_env.txt examplefile_for_env.txt aktualisiert 2025-03-21 06:40:56 +00:00
last_topic_id.txt add last_topic_id.txt 2024-11-09 12:10:13 +01:00
main.py main.py aktualisiert 2025-03-03 11:21:41 +00:00
nodebb_post_to_mastodon.sh Edit nodebb_post_to_mastodon.sh 2024-11-08 16:19:50 +01:00
README.md code cleanup and edit README.md 2024-11-10 17:06:04 +01:00

NodeBB post to Mastodon

created with Python

Linting Linting Python Version License

nodebb_post_to_mastodon

About

I needed the ability to post a new post to Mastodon in my NodeBB forum. It is configurable in the configuration which user of the NodeBB can post (UID)

This Python script will be started by a crontab job. Crontab will execute the shell script nodebb_post_to_mastodon.sh every minute. When the shell script starts the Python file main.py, it will check for a new post. If a new post is found, it will send the post to Mastodon.

This project is quite far from perfect, but it helped me a lot to understand the world of Python, PyCharm and git a little.

If it helps someone along the way as well, I'm glad. For questions and suggestions you can write me in my forum

Dependencies

  • python >= 3.10
  • pipenv
  • git

Installation

Clone Repository

git clone https://gitlab.com/Bullet64/nodebb_post_to_mastodon.git

Create env

cd /home/<USER>/nodebb_post_to_mastodon

# We upgrade to last pip version
python -m pip install -U pip
pip install pipenv

pipenv --python 3.11
pipenv shell

Usage

Create crontab for

crontab -u <USER> -e

This script is triggered by a crontab job, which runs every minute. Line 2 is for debugging purposes by logging the output.

# m h  dom mon dow   command
#* * * * * /home/<USER>/nodebb_post_to_mastodon/./nodebb_post_to_mastodon.sh >> /home/user_nodebb/nodebb_post_to_mastodon/cron_log.log 2>&1
* * * * * /home/<USER>/nodebb_post_to_mastodon/./nodebb_post_to_mastodon.sh

Tested on

  • Debian Bookworm 12

Known problems

None at present

Example Post from Mastodon