Create a new Feast repository
(project_directory, minimal: bool, template: str, repo_path: str)
| 489 | help="Directory path where the repository will be created (default: create subdirectory with project name)", |
| 490 | ) |
| 491 | def init_command(project_directory, minimal: bool, template: str, repo_path: str): |
| 492 | """Create a new Feast repository""" |
| 493 | if not project_directory: |
| 494 | project_directory = generate_project_name() |
| 495 | |
| 496 | if minimal: |
| 497 | template = "minimal" |
| 498 | |
| 499 | init_repo(project_directory, template, repo_path) |
| 500 | |
| 501 | |
| 502 | @cli.command("listen") |
nothing calls this directly
no test coverage detected