Make MASTODON_URL configurable

This commit is contained in:
Thomas Renger 2024-11-01 16:35:53 +01:00
parent c70159e31b
commit c4c9b226ac

View file

@ -1,3 +1,4 @@
import os
import moon
from mastodon import Mastodon
from pytz import timezone
@ -5,9 +6,8 @@ from datetime import datetime
# Set up Mastodon
mastodon = Mastodon(
access_token = 'testtoken.secret',
# api_base_url = 'https://fnordon.de/'
api_base_url = 'https://mastodon.wazongtest.de/'
access_token = 'token.secret',
api_base_url = os.getenv('MASTODON_URL', 'https://mastodon.wazongtest.de/')
)
tz = timezone('Europe/Berlin')