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())
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())
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)