Spaces:
Sleeping
Sleeping
| """Hugging Face Spaces entrypoint for Myco.""" | |
| import os | |
| os.environ.setdefault("GRADIO_SSR_MODE", "False") | |
| from gradio.themes import Soft | |
| from ui.gradio_app import build_app | |
| from ui.styles import APP_CSS | |
| LAUNCH_OPTIONS = { | |
| "theme": Soft(primary_hue="green", secondary_hue="emerald"), | |
| "css": APP_CSS, | |
| "ssr_mode": False, | |
| } | |
| demo = build_app() | |
| if __name__ == "__main__": | |
| demo.queue(max_size=5) | |
| demo.launch(**LAUNCH_OPTIONS) | |
| demo.launch(server_name="0.0.0.0") | |