import http.server, socketserver, os
os.chdir("/root/assembleias-online")
socketserver.TCPServer.allow_reuse_address = True
with socketserver.TCPServer(("0.0.0.0", 8085), http.server.SimpleHTTPRequestHandler) as httpd:
    httpd.serve_forever()
