Skip to content

Commit

Permalink
add moose-cli to python project dependencies (#1727)
Browse files Browse the repository at this point in the history
  • Loading branch information
phiSgr authored Sep 6, 2024
1 parent 9ee12ce commit 59b0cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/framework-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ async fn top_command_handler(

let run_dev_string = match language {
SupportedLanguages::Typescript => "npm run dev",
SupportedLanguages::Python => "npx @514labs/moose-cli@latest dev",
SupportedLanguages::Python => "moose-cli dev",
};

wait_for_usage_capture(capture_handle).await;
Expand Down
1 change: 1 addition & 0 deletions apps/framework-cli/src/project/python_project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ impl Default for PythonProject {
"kafka-python-ng==2.2.2".to_string(),
"clickhouse_connect==0.7.16".to_string(),
"requests==2.32.3".to_string(),
"moose-cli".to_string(),
],
}
}
Expand Down

0 comments on commit 59b0cbc

Please sign in to comment.