grid-gent / main.py
James Afful
Add Grid-Gent Space code and Dockerfile (no binary assets)
458fa79
raw
history blame contribute delete
270 Bytes
from __future__ import annotations
import os
from app.server import run_server
if __name__ == "__main__":
port_str = os.environ.get("GRID_GENT_PORT", "8000")
try:
port = int(port_str)
except ValueError:
port = 8000
run_server(port=port)