This commit is contained in:
MarkLo 2025-11-20 22:41:04 +08:00
parent 0f46996c85
commit 91dcde9272
1 changed files with 3 additions and 3 deletions

View File

@ -24,12 +24,12 @@ def main():
print(f"📍 Host: {host}")
print(f"🔌 Port: {port}")
print(f"🔄 Reload: {reload}")
print(f"\n📖 API Documentation: http://{host}:{port}/docs")
print(f"📊 Health Check: http://{host}:{port}/api/health\n")
print(f"\n📖 API Documentation: http://localhost:{port}/docs")
print(f"📊 Health Check: http://localhost:{port}/api/health\n")
# Start uvicorn server
uvicorn.run(
"app.main:app",
"backend.app.main:app", # Use full module path
host=host,
port=port,
reload=reload,