Exosphere is a set of small, modular, self-hostable community tools built on the AT Protocol. app.exosphere.site
6
fork

Configure Feed

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

chore: update command after vp migration

Hugo caee82fd baa14895

+3 -7
+2 -3
CLAUDE.md
··· 14 14 15 15 ### Commands 16 16 17 - - `bunx run tsc`: Check project TypeScript types 18 - - `bun run fmt`: Foramt with oxfmt 19 - - `bun run test`: Run unit tests 17 + - `bunx run check`: (or `vp check`) Check project lints, tpyes, format 18 + - `bun run test`: (or `vp test`) Run unit tests 20 19 - `bun run test:e2e`: Run end-to-end tests 21 20 22 21 ## Architecture
+1 -4
package.json
··· 34 34 "start": "NODE_ENV=production bun run packages/app/src/server.ts", 35 35 "start:indexer": "bun run packages/indexer/src/main.ts", 36 36 "preview": "bun run db:generate && bun run db:migrate && bun run build && bun run start", 37 - "tsc": "tsc --noEmit", 38 - "fmt": "vp fmt", 39 - "fmt:check": "vp fmt --check", 40 - "lint": "vp lint", 37 + "check": "vp check", 41 38 "test": "vp test run", 42 39 "test:watch": "vp test", 43 40 "test:e2e": "playwright test --config packages/app/e2e/playwright.config.ts"