import os
from azure.storage.blob import BlobServiceClient

SQLALCHEMY_DATABASE_URI = "mssql+pymssql://adminproject:Cato2938@proj-server-sql.database.windows.net:1433/techstart_db?driver=ODBC+Driver+18+for+SQL+Server&encrypt=yes"
SQLALCHEMY_TRACK_MODIFICATIONS = False
SECRET_KEY = "supersecretkey123"

# Azure Blob
connect_str = "DefaultEndpointsProtocol=https;AccountName=projstorage762;AccountKey=YOUR_BLOB_KEY_HERE;EndpointSuffix=core.windows.net"
blob_service_client = BlobServiceClient.from_connection_string(connect_str)
container_name = "images"
