AI-powered-SQL / test.py
github-actions
Auto deploy from GitHub Actions
1914b78
raw
history blame contribute delete
176 Bytes
from src.main import app
if __name__=="__main__":
print("Starting server...") # 👈 add this
import uvicorn
uvicorn.run(app , host="0.0.0.0" , port=8000)