├── .env.sample ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── ai.ts ├── neynarClient.ts └── webhooks │ └── reply │ └── route.ts ├── next.config.js ├── package.json ├── tsconfig.json └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/README.md -------------------------------------------------------------------------------- /app/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/app/ai.ts -------------------------------------------------------------------------------- /app/neynarClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/app/neynarClient.ts -------------------------------------------------------------------------------- /app/webhooks/reply/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/app/webhooks/reply/route.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfurlong/farcaster-bot-template/HEAD/yarn.lock --------------------------------------------------------------------------------