ATC-RL-Environment / run_api.py
Algio-1452's picture
Initialize
cd439ab
Raw
History Blame Contribute Delete
222 Bytes
# Script to launch the FastAPI server
import uvicorn
def main():
print("Launching ATC RL API server...")
uvicorn.run("api.main:app", host="0.0.0.0", port=8000, reload=True)
if __name__ == "__main__":
main()