Spaces:
Sleeping
Sleeping
fix: correct Firebase project ID and remove debug logging
Browse files- firebase_auth.py +0 -4
firebase_auth.py
CHANGED
|
@@ -12,10 +12,6 @@ _db = None
|
|
| 12 |
|
| 13 |
|
| 14 |
def init_firebase():
|
| 15 |
-
from config import FIREBASE_PROJECT_ID, FIREBASE_CLIENT_EMAIL
|
| 16 |
-
import os
|
| 17 |
-
print(f"[Firebase] Initializing with project={os.environ.get('FIREBASE_PROJECT_ID', FIREBASE_PROJECT_ID)}, client={os.environ.get('FIREBASE_CLIENT_EMAIL', FIREBASE_CLIENT_EMAIL)}")
|
| 18 |
-
|
| 19 |
global _app, _db
|
| 20 |
if _app is not None:
|
| 21 |
return
|
|
|
|
| 12 |
|
| 13 |
|
| 14 |
def init_firebase():
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
global _app, _db
|
| 16 |
if _app is not None:
|
| 17 |
return
|