Implement documentation setup and Docker configuration for LWC project

This commit is contained in:
Даниил Грабарь
2026-05-20 13:49:21 +10:00
parent a06470c0c9
commit dedf3e3467
12 changed files with 704 additions and 16 deletions
+5 -1
View File
@@ -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)