This commit is contained in:
hackrobot
2024-08-10 17:03:15 +08:00
parent 326348aff4
commit 55605dd755
8 changed files with 5 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -7,7 +7,9 @@ from sqlalchemy.orm import sessionmaker
# SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
# 使用 MySQL 连接
SQLALCHEMY_DATABASE_URL = "mysql+pymysql://hackrobot:Xiao4669805@localhost:3400/hackrobot"
SQLALCHEMY_DATABASE_URL = "mysql+pymysql://hackrobot:Xiao4669805@192.168.31.184:3400/hackrobot"
# SQLALCHEMY_DATABASE_URL = "mysql+pymysql://hackrobot:Xiao4669805@localhost:3400/hackrobot"
engine = create_engine(SQLALCHEMY_DATABASE_URL)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)

4
run.py
View File

@@ -1,6 +1,6 @@
import uvicorn
if __name__ == "__main__":
uvicorn.run("app.main:app", host="0.0.0.0", port=8700, reload=True)
# uvicorn.run("app.main:app", host="127.0.0.1", port=8700, reload=True)
# uvicorn.run("app.main:app", host="0.0.0.0", port=8700, reload=True)
uvicorn.run("app.main:app", host="127.0.0.1", port=8700, reload=True)