Files
BlueMastoFeed/env
Ralf Kirchner e4fc11405a
All checks were successful
Build and Push Docker Image on Tag / build_and_push (push) Successful in 27s
Added function to post mastodon, or bluesky or both
2025-05-25 14:32:20 +02:00

32 lines
733 B
Plaintext

# RSS Feed
FEED_URL=https://example.com/rss.xml
# Mastodon
MASTODON_API_BASE_URL=https://mastodon.social
MASTODON_ACCESS_TOKEN=your_mastodon_access_token
# Bluesky
BSKY_IDENTIFIER=your_handle.bsky.social
BSKY_PASSWORD=your_bluesky_password
# mögliche Werte: mastodon, bluesky, both
POST_TARGETS=both
# Intervall in Minuten für Feedprüfung
INTERVAL_MINUTES=30
# Maximales Alter eines Beitrags (in Tagen), der gepostet werden darf (0 = nur heute, 1 = bis gestern, usw.)
MAX_POST_AGE_DAYS=0
# E-Mail Einstellungen
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=bot@example.com
SMTP_PASSWORD=super_secure_password
EMAIL_FROM=bot@example.com
EMAIL_TO=admin@example.com
# E-Mail-Modus: none | errors | all
EMAIL_MODE=errors