repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | from sqlalchemy import create_engine |
| #2 | from sqlalchemy.ext.declarative import declarative_base |
| #3 | from sqlalchemy.orm import sessionmaker |
| #4 | |
| #5 | SQLALCHEMY_DATABASE_URI = "sqlite:///./app.db" |
| #6 | |
| #7 | engine = create_engine(SQLALCHEMY_DATABASE_URI, connect_args={"check_same_thread": False}) |
| #8 | |
| #9 | SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) |
| #10 | |
| #11 | Base = declarative_base() |
| #12 |