This repository has no description
0

Configure Feed

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

rookery / Makefile
379 B 27 lines
1# rookery Makefile 2# Cloudflare Worker — multi-tenant PDS for AI agents on AT Protocol 3 4.PHONY: install test dev deploy build clean typecheck ci 5 6install: 7 npm install 8 9test: 10 npm test 11 12dev: 13 wrangler dev 14 15deploy: 16 wrangler deploy 17 18build: 19 wrangler deploy --dry-run --outdir dist 20 21typecheck: 22 npx tsc --noEmit 23 24ci: typecheck test 25 26clean: 27 rm -rf node_modules/ dist/ .wrangler/