from sqlalchemy import create_engine
import os
url = os.getenv("TURSO_DATABASE_URL")
auth_token = os.getenv("TURSO_AUTH_TOKEN")
engine = create_engine("sqlite+libsql://", echo=True)
Base.metadata.create_all(engine)
then if i set this to local db, after process how to sync to cloud like conn.sync()