Esempio 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)
Esempio n. 2
0
File: cli.py Progetto: 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)
Esempio n. 3
0
 def tearDown(self):
     if SKETCHBOOK_DIR.exists():
         shutil.rmtree(SKETCHBOOK_DIR)
Esempio n. 4
0
 def setUp(self):
     if not SKETCHBOOK_DIR.exists():
         SKETCHBOOK_DIR.mkdir()