-
Notifications
You must be signed in to change notification settings - Fork 8
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
feat: Add components subcommand #197
Conversation
73c413e
to
dee49cc
Compare
tracing::info!("Running: {}", manifest.package.build.command); | ||
let mut cmd = Command::new("sh"); | ||
cmd.arg("-c").arg(manifest.package.build.command); | ||
let status = cmd.status()?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that:
By default, stdin, stdout and stderr are inherited from the parent.
Is that ok by default? maybe it shouldn't be logged to stdout unless you set an env variable for debugging?
} | ||
|
||
#[derive(Debug, Deserialize)] | ||
pub struct Package { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there anything else that we might want here? like something the web console supports and we don't support yet with the CLI?
maybe the component image/logo?
* feat: add new and init command * feat: update commands * feat: fix clippy * feat: added default build command for the init * feat: update manifest for init with new cattegory and subcat prompt * feat: updated some typos and added logs * feat: add instructions to install dependencies * feat: update command with new manifest * add TypeScript to components boilerplace --------- Co-authored-by: Alex Casalboni <alexsaxmib@gmail.com>
Co-authored-by: Nicolas Girardot <122389871+NicolasGirardot@users.noreply.github.com>
Checklist
Description of Changes
edgee components
subcommandedgee serve
Related Issues