this repo has no description
1
fork

Configure Feed

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

at main 58 lines 899 B view raw view rendered
1# Better PDS Dash 2 3![screenshot](screenshot.png) 4A comic-style Bluesky PDS dashboard with full support for Bluesky's embeds and media. 5 6## Setup 7 8Install dependencies: 9 10```bash 11bun i 12``` 13 14Copy and add environment variables: 15 16```bash 17cp .env.example .env 18``` 19 20Add your PDS URL to the `.env` file: 21 22```bash 23NEXT_PUBLIC_PDS_URL=https://pds.scanash.com 24``` 25 26Add your PDS API Password to the `.env`: 27 28```bash 29PDS_PASSWORD=bleblebleble 30``` 31 32If wanted, change the BSKY_APP_URL to your preferred Bluesky app fork: 33 34```bash 35NEXT_PUBLIC_BSKY_APP_URL=https://witchsky.app 36``` 37 38Build: 39 40```bash 41bun run build 42``` 43 44Run: 45 46```bash 47bun run start 48``` 49 50# How do i use this with my PDS 51 52Uh, you will figure it out, just use Traefik/Caddy to serve this on / 53 54Here's a guide that might be helpful: [Setting a custom homepage on a PDS](https://willdot.leaflet.pub/3m25uvnuwnk2t) 55 56# License 57 58Licensed under the MIT License