Implement documentation setup and Docker configuration for LWC project
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
import argparse
|
||||
|
||||
from cobot.commands.doc_setup import run as _doc_setup
|
||||
from cobot.commands.docker_setup import run as _docker_setup
|
||||
|
||||
|
||||
def register(subparsers):
|
||||
p = subparsers.add_parser("setup", help="First-time project setup")
|
||||
@@ -7,4 +10,5 @@ def register(subparsers):
|
||||
|
||||
|
||||
def run(args: argparse.Namespace) -> None:
|
||||
print("cobot setup — TODO: implement setup logic here")
|
||||
_doc_setup(args)
|
||||
_docker_setup(args)
|
||||
|
||||
Reference in New Issue
Block a user