63 lines
2.5 KiB
Bash
63 lines
2.5 KiB
Bash
# Job Scraping API Keys
|
|
# For professional job search APIs (recommended for better results)
|
|
|
|
# RapidAPI Jobs Search API
|
|
# Sign up at: https://rapidapi.com/letscrape-6bRBa3QguO5/api/jobs-search-realtime-data-api/
|
|
RAPIDAPI_KEY=your_rapidapi_key_here
|
|
|
|
# SerpAPI for Google Jobs (alternative)
|
|
# Sign up at: https://serpapi.com/
|
|
SERPAPI_KEY=your_serpapi_key_here
|
|
|
|
# Google Serper API (recommended - faster and cheaper)
|
|
# Sign up at: https://serper.dev/
|
|
SERPER_API_KEY=your_serper_key_here
|
|
|
|
# GitHub Token (optional, for GitHub scraping)
|
|
GITHUB_TOKEN=your_github_token_here
|
|
|
|
# Google AI (for blog image generation)
|
|
# Get your key at: https://aistudio.google.com/apikey
|
|
GOOGLE_API_KEY=your_google_api_key_here
|
|
|
|
# Supabase (for download statistics)
|
|
SUPABASE_URL=your_supabase_url
|
|
SUPABASE_API_KEY=your_supabase_key
|
|
|
|
# Neon Database (for Claude Code changelog monitoring)
|
|
NEON_DATABASE_URL=postgresql://user:password@host/database?sslmode=require
|
|
|
|
# Discord Bot Configuration
|
|
DISCORD_APP_ID=your_discord_application_id
|
|
DISCORD_BOT_TOKEN=your_discord_bot_token
|
|
DISCORD_PUBLIC_KEY=your_discord_public_key
|
|
DISCORD_GUILD_ID=your_discord_server_id_optional
|
|
|
|
# Discord Webhooks
|
|
DISCORD_WEBHOOK_URL=your_discord_webhook_url
|
|
DISCORD_WEBHOOK_URL_CHANGELOG=your_discord_changelog_specific_webhook_url
|
|
|
|
# API Configuration
|
|
COMPONENTS_API_URL=https://aitmpl.com/components.json
|
|
|
|
# Sentry Error Tracking (free tier, no @sentry/* SDK — each surface posts
|
|
# directly to the Sentry envelope API via fetch())
|
|
# Dashboard API routes (dashboard/src/pages/api/*.ts). In production this is
|
|
# set as a Cloudflare Pages secret (`wrangler pages secret put SENTRY_DSN
|
|
# --project-name=aitmpl-dashboard`), NOT via this file:
|
|
SENTRY_DSN=your_sentry_dsn_for_aitmpl_dashboard_project
|
|
# Cloudflare Workers (set via `wrangler secret put SENTRY_DSN` per worker —
|
|
# crons, pulse, docs-monitor — NOT via this file; this entry is documentation):
|
|
# SENTRY_DSN=your_sentry_dsn_for_aitmpl_workers_project
|
|
# CLI (cli-tool/src/error-reporting.js): the aitmpl-cli DSN is a public
|
|
# Sentry DSN (send-only, not a secret) and ships hardcoded as the default in
|
|
# the source. Override only for local testing against a different project.
|
|
# Reporting itself is opt-in — end users must set CCT_ERROR_REPORTING=true;
|
|
# the existing CCT_NO_TRACKING/CCT_NO_ANALYTICS/CI opt-outs always win.
|
|
# CCT_SENTRY_DSN=your_sentry_dsn_for_a_different_cli_project
|
|
CCT_ERROR_REPORTING=false
|
|
|
|
# Usage:
|
|
# 1. Copy this file to .env
|
|
# 2. Add your API keys
|
|
# 3. Run: python generate_claude_jobs.py |