Kareem Ebrahim

Results 16 comments of Kareem Ebrahim

@mbnoimi can you provide some more information about what kind of features or what the templates might contain regarding SQLmodel? and if so I can work on it!

@dantownsend Thank you regarding the issue of registering commands, typer allows that: ````diff - cli.register(sum) + app.command()(sum) ```` But since targ does it it is unnecessary to change it. I...

@dantownsend No Worries. Typer, plus being apple to use `typer.Argument` or `typer.Option`, can also provide [help text from docstring](https://typer.tiangolo.com/tutorial/arguments/help/#combine-help-text-and-docstrings:~:text=restart%20%E2%86%BB-,Combine%20help%20text%20and%20docstrings,-%C2%B6) But I suggest, if this was approved, using `typer.Argument` and `typer.Option`...

Initial thoughts without testing anything, I think the problem might be in the logic of [cleanup](https://github.com/kareemmahlees/tablex/blob/19b357fb9b89366396914bf9791c214d057f956b/apps/core/src-tauri/src/main.rs#L35), specifically while [killing](https://github.com/kareemmahlees/tablex/blob/19b357fb9b89366396914bf9791c214d057f956b/apps/core/src-tauri/src/main.rs#L55) the sidecar command child.

I can't test the error case of `WithArgs` because `filepath.Abs`'s implementation varies by platform.

I was facing the same errors, I checked on tauri-plugin-window to find that it's now a public archive!

Any updates on this? Here is the custom hook I created as a workaround for this: ```ts // Defines the structured return shape of an SSE type SseEventResponse = {...