def serve_sketches(host, port, debug): """ Run HTTP server to compile and serve sketches Opitionals: - host: http server host (defaults to 127.0.0.1) - port: listened by the server (defaults to 5000) Example: $ pyp5js serve """ if not SKETCHBOOK_DIR.exists(): SKETCHBOOK_DIR.mkdir() commands.serve_http(host, port, debug)
def serve_sketches(host, port, debug): """ Run HTTP server to compile and serve sketches Opitionals: - host: - port: Example: $ pyp5js serve """ if not SKETCHBOOK_DIR.exists(): SKETCHBOOK_DIR.mkdir() commands.serve_http(host, port, debug)
def tearDown(self): if SKETCHBOOK_DIR.exists(): shutil.rmtree(SKETCHBOOK_DIR)
def setUp(self): if not SKETCHBOOK_DIR.exists(): SKETCHBOOK_DIR.mkdir()