Spaces:
Running
Running
Disable debug
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ from data_utils import (
|
|
26 |
)
|
27 |
|
28 |
EMPTY_DATA = False
|
29 |
-
CACHE_PATH =
|
30 |
|
31 |
if CACHE_PATH is not None:
|
32 |
import os
|
@@ -267,4 +267,4 @@ def update_materials_input_layout(breakpoint_name, width):
|
|
267 |
ctc.register_crystal_toolkit(app, app.layout)
|
268 |
|
269 |
if __name__ == "__main__":
|
270 |
-
app.run_server(debug=
|
|
|
26 |
)
|
27 |
|
28 |
EMPTY_DATA = False
|
29 |
+
CACHE_PATH = "cache"
|
30 |
|
31 |
if CACHE_PATH is not None:
|
32 |
import os
|
|
|
267 |
ctc.register_crystal_toolkit(app, app.layout)
|
268 |
|
269 |
if __name__ == "__main__":
|
270 |
+
app.run_server(debug=False, port=7860, host="0.0.0.0")
|