Settings

Telegram Bot

Create a bot via @BotFather on Telegram, then paste the token below.

Add the bot to a group/channel, or message it directly. Use @userinfobot to find chat IDs.

Database

Supabase connection is configured via environment variables. Set these in your .env.local file:

NEXT_PUBLIC_SUPABASE_URL=your-project-url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key

Railway Cron

Set up a cron job on Railway to hit /api/cron/scrape every 15 minutes. Protect it with a CRON_SECRET environment variable.

# Railway cron config
CRON_SECRET=your-secret-here

# Cron endpoint
GET /api/cron/scrape
Authorization: Bearer your-secret-here