Пример #1
0
def teardown_command(repo_path: str):
    """
    Tear down infra for a feature repo
    """
    repo_config = load_repo_config(Path(repo_path))

    teardown(repo_config, Path(repo_path).resolve())
Пример #2
0
def teardown_command():
    """
    Tear down deployed feature store infrastructure
    """
    cli_check_repo(Path.cwd())
    repo_config = load_repo_config(Path.cwd())

    teardown(repo_config, Path.cwd())
Пример #3
0
def teardown_command(ctx: click.Context):
    """
    Tear down deployed feature store infrastructure
    """
    repo = ctx.obj["CHDIR"]
    cli_check_repo(repo)
    repo_config = load_repo_config(repo)

    teardown(repo_config, repo)