your personal website on atproto - mirror blento.app
25
fork

Configure Feed

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

small fixes

Florian 18a3d63c 31a1bda6

+4 -3
+3 -2
docs/Contributing.md
··· 8 8 git clone https://github.com/flo-bit/blento.git 9 9 cd blento 10 10 pnpm install 11 - pnpm env:setup-dev # creates .env, fills COOKIE_SECRET + CLIENT_ASSERTION_KEY 12 11 pnpm dev 13 12 ``` 13 + 14 + No `.env` file required — dev uses the loopback OAuth public client, a fallback cookie secret, and `blento.app` as the default handle for `/`. 14 15 15 16 Note: if cloudflare authorization website opens when running `pnpm dev` flip the `DB` binding's `"remote": true` to `false` in `wrangler.jsonc` and re-run. 16 17 ··· 27 28 28 29 ## AI-assisted PRs 29 30 30 - Welcome — please: 31 + AI-assisted PRs are accepted, especially if you just create a new card, but please: 31 32 32 33 - Keep diffs minimal; no unrelated cleanup or verbose code 33 34 - Test light/dark, colored cards, edit/view, desktop and both mobile modes (screen-size and `pointer: coarse`)
+1 -1
src/lib/actor.ts
··· 30 30 console.error('failed to get custom domain kv', error); 31 31 } 32 32 } else { 33 - actor = publicEnv.PUBLIC_HANDLE as ActorIdentifier; 33 + actor = (publicEnv.PUBLIC_HANDLE || 'blento.app') as ActorIdentifier; 34 34 } 35 35 } else if (customDomain && paramActor && blockBoth) { 36 36 actor = undefined;