decentralized and customizable links page on top of atproto ligo.at
atproto link-in-bio python uv
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a5dcb7d312d481e7e52cb5194b613ca9445c8e5e 7 lines 207 B view raw
1create table if not exists pdss ( 2 name text not null unique, 3 url text not null unique, 4 relevance integer not null 5) strict; 6 7create index if not exists pdss_by_relevance on pdss(relevance desc);