From b6cd28d5d3c2e5e40353e18bb079b39438de11d2 Mon Sep 17 00:00:00 2001 From: oguz ozturk Date: Mon, 12 Jan 2026 17:00:26 +0300 Subject: [PATCH] docs: Update .env.example with Admin Panel API config --- backend/.env.example | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/.env.example b/backend/.env.example index 02288ac..a8ab3bf 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -17,7 +17,10 @@ API_PORT=5000 # Encryption Key (REQUIRED - Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())") ENCRYPTION_KEY=qcaGX4ChgOqDRmfxaikZYYJJ_qYZUDx2nRWVVGHr4sM= +# Admin Panel API (for fetching CF accounts) +ADMIN_API_URL=http://localhost:5001 +ADMIN_API_INTERNAL_KEY=internal-api-key-change-in-production + # Cloudflare Platform Accounts (DEPRECATED - Use database instead) # PLATFORM_CF_API_TOKEN=your_token_here # PLATFORM_CF_ACCOUNT_ID=your_account_id_here -