import os

from flask_dance.contrib.google import make_google_blueprint


class Config:
    SECRET_KEY = os.urandom(24)
    MONGO_URI = 'mongodb+srv://2022490404:Z35PZu5dwkleDNcw@cluster0.zrso6e7.mongodb.net/fyp?retryWrites=true&w=majority&appName=Cluster0'

    # Google OAuth

    OAUTHLIB_INSECURE_TRANSPORT = 1


