nextcloudnix / app.py
Greg-House's picture
Create app.py
ba80925 verified
raw
history blame contribute delete
188 Bytes
from http.server import SimpleHTTPRequestHandler, HTTPServer
print("Server running on port 8000")
server = HTTPServer(("0.0.0.0", 7890), SimpleHTTPRequestHandler)
server.serve_forever()