- Create sitemap.xml with internationalized routes and proper SEO attributes - Create robots.txt with appropriate crawling rules for public/private content - Update home page stats to show static values (1,416 Bible versions, 17M+ verses) - Remove live stats API calls to eliminate loading delays - Add /api/stats endpoint for potential future use - Fix Romanian prayers incorrectly tagged as English in database - Add missing AZURE_OPENAI_DEPLOYMENT to .env.example - Update translation keys for Bible versions stat - Add sample English prayer requests to populate prayer wall 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
480 B
Plaintext
17 lines
480 B
Plaintext
# Database
|
|
DATABASE_URL=postgresql://postgres:a3ppq@10.0.0.207:5432/biblical-guide
|
|
DB_PASSWORD=a3ppq
|
|
|
|
# Authentication
|
|
NEXTAUTH_URL=https://biblical-guide.com
|
|
NEXTAUTH_SECRET=generate-random-secret-here
|
|
JWT_SECRET=your-jwt-secret
|
|
|
|
# Azure OpenAI
|
|
AZURE_OPENAI_KEY=your-azure-key
|
|
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
|
|
AZURE_OPENAI_DEPLOYMENT=gpt-4
|
|
AZURE_OPENAI_API_VERSION=2024-02-15-preview
|
|
|
|
# Ollama (optional)
|
|
OLLAMA_API_URL=http://your-ollama-server:11434 |