kevanthonyP's picture
Create server/app.py
77b2760 verified
raw
history blame contribute delete
175 Bytes
import uvicorn
from server import app as existing_app
def main():
return existing_app
if __name__ == "__main__":
uvicorn.run(existing_app, host="0.0.0.0", port=7860)