Skip to content

Commit

Permalink
move init to LOCAL_COMMANDS (#476)
Browse files Browse the repository at this point in the history
* move init to LOCAL_COMMANDS

This was discovered while resolving the missing commands for a pip installation. It appears that the server/cli check was running when trying to use the init command. This caused an error to be returned when using the quickstart. I'd also like to do some further testing against fidesdemo.

* add the init to connectors

Co-authored-by: ThomasLaPiana <[email protected]>
  • Loading branch information
SteveDMurphy and ThomasLaPiana authored Apr 8, 2022
1 parent 4465346 commit 95b70b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fidesctl/src/fidesctl/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from .commands.view import view

CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
LOCAL_COMMANDS = [evaluate, parse, view, webserver]
LOCAL_COMMANDS = [evaluate, init, parse, view, webserver]
API_COMMANDS = [
annotate,
apply,
Expand All @@ -30,7 +30,6 @@
export,
generate,
get,
init,
ls,
scan,
status,
Expand Down
Empty file.

0 comments on commit 95b70b8

Please sign in to comment.