File size: 571 Bytes
4b3c8a1 e9f5c42 4b3c8a1 e9f5c42 4b3c8a1 e9f5c42 6c45254 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import os
# 1. Supabase Keys
SUPABASE_URL = os.getenv("SUPABASE_URL")
SUPABASE_KEY = os.getenv("SUPABASE_KEY")
# Check Connection
if SUPABASE_URL and SUPABASE_KEY:
IS_CONNECTED = True
print("✅ Supabase Keys Found!")
else:
IS_CONNECTED = False
print("⚠️ Supabase Keys Missing!")
# 2. App Authentication (Login Details)
# अगर सेटिंग्स में नहीं मिला तो डिफ़ॉल्ट 'admin' यूज़ करेगा
APP_USER = os.getenv("APP_USER", "admin")
APP_PASS = os.getenv("APP_PASS", "pass123") |