ast2 / run_server.py
lubacareer's picture
Deploy AstroBunch backend
f5c99b6
Raw
History Blame Contribute Delete
179 Bytes
from crystal_identifier.server import app
if __name__ == "__main__":
import os
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=int(os.getenv("PORT", "8765")))