blob: 5d5833d4ab291d472a5286e7e0932468a636c616 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Database configuration
DB_PATH=rasis.db
# Rate limiting - maximum posts per hour
POSTS_PER_HOUR=3
# Start date filter (YYYY-MM-DD format) - only process posts after this date
# Leave empty to process all posts
START_DATE=2025-12-03
# Dry run mode - set to "true" to simulate posting without actually posting
DRY_RUN=false
# Fediverse/Sharkey instance configuration
SHARKEY_INSTANCE=your-instance.com
SHARKEY_KEY=your-api-key-here
# Legacy file path (not used with SQLite version)
# HASH_FILE_PATH=processed_hashes.txt
|