From e2088f76484b8c6da232d4106310a84c5e1b4676 Mon Sep 17 00:00:00 2001 From: louzt Date: Sat, 4 Jul 2026 17:09:25 -0600 Subject: [PATCH] feat: add .env.example with all configuration variables --- .env.example | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..c7549ec --- /dev/null +++ b/.env.example @@ -0,0 +1,31 @@ +# TaxonRouter Environment Variables +# +# Copy to .env and fill in your values. +# NEVER commit .env to version control. + +# GitHub API Token (required) +# Generate at: https://github.com/settings/tokens +# Required scopes: repo (for private repos), read:user +GITHUB_TOKEN= + +# GitHub App credentials (for auto-tagger) +# If using GitHub App authentication instead of token +GITHUB_APP_ID= +GITHUB_APP_PRIVATE_KEY= + +# LLM Provider (required for classification) +# Options: openai, anthropic, azure-openai, local +LLM_PROVIDER=anthropic +LLM_API_KEY= +LLM_MODEL=claude-sonnet-4-20250514 +LLM_BASE_URL= + +# Webhook secret (verify incoming payloads) +WEBHOOK_SECRET= + +# MCP Server +MCP_SERVER_PORT=3000 + +# Auto-tagger +AUTO_TAGGER_PORT=3001 +AUTO_TAGGER_LOG_LEVEL=info