We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec9b06f + 00e5698 commit af0a0bdCopy full SHA for af0a0bd
examples/httpserver_cpython.py
@@ -19,4 +19,5 @@ def base(request: Request):
19
return Response(request, "Hello from the CircuitPython HTTP Server!")
20
21
22
-server.serve_forever("0.0.0.0")
+# runs on port 5000; ports < 1024 require sudo.
23
+server.serve_forever("0.0.0.0", 5000)
0 commit comments