Subjective_assesment / seed_test.py
sailajaai's picture
Upload 25 files
7688281 verified
raw
history blame contribute delete
379 Bytes
from app import app, mongo
with app.app_context():
try:
db = mongo.db
# List collections to verify connection
collections = db.list_collection_names()
print("βœ… MongoDB connected successfully!")
print("Existing collections:", collections)
except Exception as e:
print("❌ MongoDB connection failed:", str(e))