Ejemplo n.º 1
0
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)
Ejemplo n.º 2
0
Archivo: cli.py Proyecto: jvfe/pyp5js
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)
Ejemplo n.º 3
0
 def tearDown(self):
     if SKETCHBOOK_DIR.exists():
         shutil.rmtree(SKETCHBOOK_DIR)
Ejemplo n.º 4
0
 def setUp(self):
     if not SKETCHBOOK_DIR.exists():
         SKETCHBOOK_DIR.mkdir()