Webhooks for the AT Protocol airglow.run
atproto atprotocol automation webhook
12
fork

Configure Feed

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

ci: auto deploy

Hugo d232ae75 5547b8a6

+29
+28
.tangled/workflows/deploy.yaml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + 7 + clone: 8 + depth: 1 9 + 10 + dependencies: 11 + nixpkgs/nixpkgs-unstable: 12 + - bun 13 + - nodejs 14 + 15 + environment: 16 + NODE_ENV: "production" 17 + 18 + steps: 19 + - name: "Install dependencies" 20 + command: "bun install --frozen-lockfile" 21 + - name: "Test" 22 + command: "bun run test" 23 + - name: "Build" 24 + command: "bun run build" 25 + - name: "Deploy to Railway" 26 + command: | 27 + npm install -g @railway/cli 28 + railway up --detach --service airglow
+1
package.json
··· 5 5 "scripts": { 6 6 "dev": "vp dev", 7 7 "build": "vp build --mode client && vp build --ssr app/server.ts --emptyOutDir false", 8 + "test": "vp test", 8 9 "start": "bun run app/server.ts", 9 10 "db:generate": "drizzle-kit generate", 10 11 "db:migrate": "bun run lib/db/migrate.ts"