personal activity index (bluesky, leaflet, substack)
pai.desertthunder.dev
rss
bluesky
1# Personal Activity Index Configuration Example
2# Copy this file to your config directory and customize as needed
3#
4# Default config location:
5# - $XDG_CONFIG_HOME/pai/config.toml
6# - $HOME/.config/pai/config.toml
7
8[database]
9# Path to SQLite database file (optional, defaults to $XDG_DATA_HOME/pai/pai.db)
10path = "/home/owais/.local/share/pai/pai.db"
11
12[deployment]
13# Deployment mode: "sqlite" for local, "cloudflare" for Workers
14mode = "sqlite"
15
16# Cloudflare deployment configuration (optional, only needed for Workers)
17[deployment.cloudflare]
18worker_name = "personal-activity-index"
19d1_binding = "DB"
20database_name = "personal_activity_db"
21
22# Substack RSS feed source
23[sources.substack]
24enabled = true
25base_url = "https://patternmatched.substack.com"
26
27# Bluesky AT Protocol source
28[sources.bluesky]
29enabled = true
30handle = "desertthunder.dev"
31
32# Leaflet publications (can have multiple)
33[[sources.leaflet]]
34enabled = true
35id = "desertthunder"
36base_url = "https://desertthunder.leaflet.pub"
37
38[[sources.leaflet]]
39enabled = true
40id = "stormlightlabs"
41base_url = "https://stormlightlabs.leaflet.pub"