We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b765f3 commit 19ba68bCopy full SHA for 19ba68b
ardublocklyserver/server.py
@@ -24,7 +24,7 @@
24
document_root = ''
25
26
27
-def launch_server(ip='localhost', port=8000, document_root_=''):
+def launch_server(ip='0.0.0.0', port=8000, document_root_=''):
28
"""Launch the Waitress server and Bottle framework with given settings.
29
30
:param ip: IP address to serve. Default to localhost, set to '0.0.0.0' to
start.py
@@ -21,7 +21,7 @@
21
import ardublocklyserver.compilersettings
22
23
# Server IP and PORT settings
-SERVER_IP = 'localhost'
+SERVER_IP = '0.0.0.0'
SERVER_PORT = 8000
0 commit comments