Skip to content

Commit 0c1f6ce

Browse files
committed
✨ Add cloud ci setup command
Shortcake-Parent: main
1 parent df82cd4 commit 0c1f6ce

5 files changed

Lines changed: 628 additions & 109 deletions

File tree

src/fastapi_cloud_cli/commands/ci/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
from fastapi_cloud_cli.commands.ci.print_workflow import (
44
print_workflow as print_workflow_command,
55
)
6+
from fastapi_cloud_cli.commands.setup_ci import setup_ci
67

78
ci_app = typer.Typer(
89
no_args_is_help=True,
910
help="Manage CI integration helpers.",
1011
)
1112
ci_app.command("print-workflow")(print_workflow_command)
13+
ci_app.command("setup")(setup_ci)
1214

1315
__all__ = ["ci_app"]

0 commit comments

Comments
 (0)