polls on atproto pollz.waow.tech
atproto zig
0
fork

Configure Feed

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

at main 22 lines 439 B view raw
1# pollz 2mod backend 3 4# show available commands 5default: 6 @just --list 7 8# build frontend 9build: 10 cd frontend && pnpm build 11 12# deploy frontend to cloudflare pages 13deploy-frontend: 14 cd frontend && pnpm build 15 npx wrangler pages deploy frontend/build --project-name=pollz-waow-tech --commit-dirty=true 16 17# deploy backend to fly.io 18deploy-backend: 19 just backend::deploy 20 21# deploy everything 22deploy: deploy-backend deploy-frontend