Spaces:
Sleeping
Sleeping
Update run.py
Browse files
run.py
CHANGED
@@ -8,5 +8,5 @@ sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
|
|
8 |
from app.web.web_server import app
|
9 |
|
10 |
if __name__ == '__main__':
|
11 |
-
port = int(os.environ.get('PORT',
|
12 |
app.run(host='0.0.0.0', port=port, debug=False)
|
|
|
8 |
from app.web.web_server import app
|
9 |
|
10 |
if __name__ == '__main__':
|
11 |
+
port = int(os.environ.get('PORT', 7860))
|
12 |
app.run(host='0.0.0.0', port=port, debug=False)
|