Spaces:
Sleeping
Sleeping
File size: 721 Bytes
8e97fc5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # SysCRED Environment Configuration
# ==================================
# Copy this file to .env and fill in your values
# Supabase Database (PostgreSQL)
# Get this from: Supabase Dashboard > Settings > Database > Connection string
DATABASE_URL=postgresql://postgres:YOUR_PASSWORD@db.YOUR_PROJECT.supabase.co:5432/postgres
# Google Fact Check API Key
# Get this from: https://console.cloud.google.com/apis/credentials
GOOGLE_FACT_CHECK_API_KEY=your_google_api_key_here
# HuggingFace Space URL (for remote processing)
HF_SPACE_URL=https://domloyer-syscred.hf.space
# Flask Configuration
FLASK_DEBUG=false
FLASK_HOST=0.0.0.0
FLASK_PORT=5001
# ML Model Loading (set to false for lightweight mode)
LOAD_ML_MODELS=false
|