From 93fd764482835879f2b64b7f94a6e64815c051a1 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 7 Jul 2024 22:48:19 +0200 Subject: protoboard: Add CLI --- gerbonara/cli.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'gerbonara/cli.py') diff --git a/gerbonara/cli.py b/gerbonara/cli.py index d6b93f2..93b989e 100644 --- a/gerbonara/cli.py +++ b/gerbonara/cli.py @@ -24,6 +24,7 @@ import re import warnings import json import itertools +import webbrowser from pathlib import Path from .utils import MM, Inch @@ -33,6 +34,7 @@ from . import layers as lyr from . import __version__ from .cad.kicad import schematic as kc_schematic from .cad.kicad import tmtheme +from .cad import protoserve def _print_version(ctx, param, value): @@ -130,6 +132,23 @@ def cli(): well as sets of those files """ pass +@cli.group('protoboard') +def protoboard_group(): + pass + + +@protoboard_group.command() +@click.option('-h', '--host', default=None, help='Hostname to listen on. Defaults to localhost.') +@click.option('-p', '--port', type=int, default=1337, help='Port to listen on. Defaults to 1337') +def interactive(host, port): + ''' Launch gerbonar's interactive protoboard designer in your browser ''' + + if host is None: + @protoserve.app.before_serving + async def open_browser(): + webbrowser.open_new(f'http://localhost:{port}/') + protoserve.app.run(host=host, port=port, use_reloader=False, debug=False) + @cli.group('kicad') def kicad_group(): -- cgit