Spaces:
Running
Running
noahlee1234 commited on
Commit ·
a1ed7f3
1
Parent(s): 22b6ddd
Restore demo.launch() call required for Docker SDK
Browse files
app.py
CHANGED
|
@@ -14,3 +14,9 @@ module = importlib.util.module_from_spec(spec)
|
|
| 14 |
spec.loader.exec_module(module)
|
| 15 |
|
| 16 |
demo = module.build_ui()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
spec.loader.exec_module(module)
|
| 15 |
|
| 16 |
demo = module.build_ui()
|
| 17 |
+
|
| 18 |
+
if __name__ == '__main__':
|
| 19 |
+
demo.launch(
|
| 20 |
+
server_name='0.0.0.0',
|
| 21 |
+
server_port=7860,
|
| 22 |
+
)
|