f611e3a30c
These environment variables were already supported in config.py but were not documented in .env.example, making them hard to discover. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
76 lines
2.3 KiB
Bash
76 lines
2.3 KiB
Bash
# SPARC Configuration
|
|
|
|
# ---- Application Environment ----
|
|
# Set to "production" or "staging" in deployed environments.
|
|
# The API will refuse to start with the default JWT secret unless APP_ENV=development.
|
|
APP_ENV=development
|
|
|
|
# ---- API Keys ----
|
|
|
|
# SerpAPI key for patent search
|
|
API_KEY=your_serpapi_key_here
|
|
|
|
# OpenRouter API key for LLM analysis
|
|
OPENROUTER_API_KEY=your_openrouter_key_here
|
|
|
|
# ---- Database ----
|
|
|
|
# PostgreSQL credentials (used by docker-compose)
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=change-me-to-a-secure-password
|
|
POSTGRES_DB=sparc
|
|
|
|
# Full database URL (must match the credentials above)
|
|
DATABASE_URL=postgresql://postgres:change-me-to-a-secure-password@localhost:5432/sparc
|
|
|
|
# ---- Authentication ----
|
|
|
|
# JWT Secret for signing tokens
|
|
# IMPORTANT: Change this to a secure random string in production
|
|
JWT_SECRET=your-secure-jwt-secret-change-in-production
|
|
|
|
# ---- CORS ----
|
|
|
|
# Comma-separated list of allowed origins for CORS
|
|
# Defaults to http://localhost:3000,http://localhost:5173 when unset
|
|
# CORS_ORIGINS=https://sparc.example.com,https://app.example.com
|
|
|
|
# ---- Storage ----
|
|
|
|
# Backend for patent PDF storage: "local" (default) or "s3"
|
|
STORAGE_BACKEND=local
|
|
|
|
# S3/MinIO settings (only used when STORAGE_BACKEND=s3)
|
|
# S3_BUCKET=sparc-patents
|
|
# S3_ENDPOINT_URL=http://localhost:9000
|
|
# AWS_ACCESS_KEY_ID=minioadmin
|
|
# AWS_SECRET_ACCESS_KEY=minioadmin
|
|
# To start MinIO locally: docker compose --profile s3 up -d minio
|
|
|
|
# ---- LLM ----
|
|
|
|
# LLM model to use via OpenRouter
|
|
# Supported: anthropic/claude-3.5-sonnet, openai/gpt-4o, openai/gpt-4o-mini,
|
|
# google/gemini-pro-1.5, meta-llama/llama-3.1-70b-instruct
|
|
# MODEL=anthropic/claude-3.5-sonnet
|
|
|
|
# ---- Cache ----
|
|
|
|
# When USE_CACHE=true: check database for cached responses before making API calls
|
|
# When USE_CACHE=false: always make fresh API calls (still stores results in database)
|
|
USE_CACHE=true
|
|
|
|
# SERP API cache TTL in hours (how long cached search results are considered fresh)
|
|
# SERP_CACHE_TTL_HOURS=24
|
|
|
|
# ---- Logging ----
|
|
|
|
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
|
|
# LOG_LEVEL=INFO
|
|
|
|
# ---- Webhooks ----
|
|
|
|
# Comma-separated list of webhook URLs for job completion and alert notifications
|
|
# Supports generic HTTP POST and Slack/Discord incoming webhooks
|
|
# WEBHOOK_URLS=https://hooks.slack.com/services/XXX,https://example.com/webhook
|