Remove extra flags from pc run (#434)
This commit is contained in:
parent
6af374e024
commit
dab7e5d2a1
@ -54,8 +54,12 @@ def run(
|
|||||||
env: constants.Env = typer.Option(
|
env: constants.Env = typer.Option(
|
||||||
constants.Env.DEV, help="The environment to run the app in."
|
constants.Env.DEV, help="The environment to run the app in."
|
||||||
),
|
),
|
||||||
frontend: bool = typer.Option(True, help="Whether to run the frontend."),
|
frontend: bool = typer.Option(
|
||||||
backend: bool = typer.Option(True, help="Whether to run the backend."),
|
True, "--no-frontend", help="Disable frontend execution."
|
||||||
|
),
|
||||||
|
backend: bool = typer.Option(
|
||||||
|
True, "--no-backend", help="Disable backend execution."
|
||||||
|
),
|
||||||
loglevel: constants.LogLevel = typer.Option(
|
loglevel: constants.LogLevel = typer.Option(
|
||||||
constants.LogLevel.ERROR, help="The log level to use."
|
constants.LogLevel.ERROR, help="The log level to use."
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user