dream-customs / app.py
ADJCJH's picture
Update app.py
77c1e12 verified
Raw
History Blame
356 Bytes
import os
from dream_customs import zerogpu # noqa: F401
from dream_customs.ui.app import build_demo
demo = build_demo()
if __name__ == "__main__":
demo.launch(
server_name=os.getenv("GRADIO_SERVER_NAME", "0.0.0.0"),
server_port=int(os.getenv("GRADIO_SERVER_PORT", "7860")),
show_api=False,
show_error=True,
)