James Roeder
James Roeder
I'd love to re-open this issue if possible - I am working on a project whose repo has several `Dockerfile`s, intended to be built from their own contexts. Each of...
Sorry, I skipped a layer. The `api` and `frontend` directories are _inside_ another repository, which I don't have direct control over. ``` . ├── garden.yml └── project-repo ├── .git ├──...
> Could you clarify what you meant by setting up a logger? Thank you for this description. @jmaroeder Using something like [logging.basicConfig](https://docs.python.org/3/library/logging.html#logging.basicConfig), if I remember correctly
I too would like to be able to perform custom coercions - I wasn't using faust prior to `v1.10`, but I would like to use this for, e.g., `UUID` standardization...
I figured out a workaround based on the [using click docs](https://typer.tiangolo.com/tutorial/using-click/#including-a-click-app-in-a-typer-app): ```python import typer app = typer.Typer() @app.command() def test(count: int = typer.Option(1, help="How high to count")): typer.echo(f"Count: {count}") @app.command()...
**UPDATE: see [below comment](https://github.com/tiangolo/typer/issues/102#issuecomment-628162198) for a version that works with `callback()` decorated functions as well as `command()` decorated ones.** --- It appears that with the current structure, there is no...
Just discovered that the workaround I posted above only works for `command()` decorated functions. To get callbacks to also work, use the following: ```python from typing import Optional, Callable, Union,...
> We do have a mechanism in place now to allow waiting on promises across requests @jasnell Is there anything we need to do to "opt in" to this functionality?...