Initial commit: Clean SEO analysis system

This commit is contained in:
Kevin Bataille
2026-02-16 05:25:16 +04:00
commit 3b51952336
13 changed files with 2611 additions and 0 deletions

23
.env.example Normal file
View File

@@ -0,0 +1,23 @@
# WordPress Configuration
WORDPRESS_URL=https://yoursite.com
WORDPRESS_USERNAME=your_username
WORDPRESS_APP_PASSWORD=your_application_password
# OpenRouter API Configuration
OPENROUTER_API_KEY=your_openrouter_api_key
# AI Model Selection (choose one)
# Recommended: anthropic/claude-3.5-sonnet (best quality, $3/$15 per 1M tokens)
# Budget: meta-llama/llama-3.1-70b-instruct (free tier available)
# Alternative: openai/gpt-4-turbo ($10/$30 per 1M tokens)
AI_MODEL=anthropic/claude-3.5-sonnet
# Script Configuration
BATCH_SIZE=100
API_DELAY_SECONDS=0.5
# Analysis Settings
ANALYSIS_MIN_POSITION=11
ANALYSIS_MAX_POSITION=30
ANALYSIS_MIN_IMPRESSIONS=50
ANALYSIS_TOP_N_POSTS=20