Add PageSpeed Insights API key configuration to .env.example with: - Environment variable name: GOOGLE_PAGESPEED_API_KEY - Link to API key setup documentation - Note about free tier limits (25k requests/day) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
1001 B
Plaintext
34 lines
1001 B
Plaintext
# Norda Biznes Hub - Environment Configuration
|
|
# ==============================================
|
|
|
|
# Flask Configuration
|
|
SECRET_KEY=your-super-secret-key-change-in-production
|
|
FLASK_ENV=development
|
|
|
|
# Server Configuration
|
|
PORT=5000
|
|
HOST=0.0.0.0
|
|
|
|
# Database Configuration (PostgreSQL on NORDABIZ-01)
|
|
DATABASE_URL=postgresql://nordabiz_app:your_password_here@10.22.68.249:5432/nordabiz
|
|
|
|
# Google Gemini API
|
|
GOOGLE_GEMINI_API_KEY=your_gemini_api_key_here
|
|
|
|
# Google PageSpeed Insights API (for SEO audits)
|
|
# Get your API key from: https://developers.google.com/speed/docs/insights/v5/get-started
|
|
# Free tier: 25,000 requests/day
|
|
GOOGLE_PAGESPEED_API_KEY=your_pagespeed_api_key_here
|
|
|
|
# Email Configuration (for user verification)
|
|
MAIL_SERVER=smtp.gmail.com
|
|
MAIL_PORT=587
|
|
MAIL_USE_TLS=True
|
|
MAIL_USERNAME=your_email@gmail.com
|
|
MAIL_PASSWORD=your_app_password_here
|
|
MAIL_DEFAULT_SENDER=noreply@norda-biznes.info
|
|
|
|
# Application URLs
|
|
APP_URL=http://localhost:5000
|
|
VERIFY_EMAIL_URL=http://localhost:5000/verify-email
|