◐ Shell
clean mode source ↗

Expose project deletion to CLI

Is your feature request related to a problem? Please describe.
I would like to expose a way from the CLI to delete project resources, targeting a specific project.

Describe the solution you'd like
Ideally, the CLI can be updated to support tearing down a single project's resources.

feast teardown --project my_project

Describe alternatives you've considered
There could be a separate CLI for managing project resources:

feast project my_project --delete

Additional context
There already appears to be a delete_project(...) function that may do what is wanted, although looking over the the implementations in sql.py for example, there are different tables targeted between the 2 methods(teardown() and delete_project())