Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate and Remove the morph sync Command #32

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions core/morph/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,23 +147,6 @@ def clean(
return None, True


@cli.command("sync")
@params.verbose
@click.pass_context
@global_flags
@requires.preflight
@requires.postflight
def sync(
ctx: click.Context, **kwargs: Dict[str, Union[str, int, bool]]
) -> Tuple[Union[Dict[str, Union[str, int, bool]], None], bool]:
"""Synchronize local morph project with the cloud."""
from morph.task.sync import SyncTask

task = SyncTask(ctx.obj["flags"])
results = task.run()
return results, True


@cli.command("serve")
@params.workdir
@params.preview
Expand Down
Loading
Loading