We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ceb097d + c4aab47 commit a5e9879Copy full SHA for a5e9879
pyproject.toml
@@ -34,6 +34,9 @@ classifiers = [
34
]
35
dependencies = [
36
"typer >= 0.12.3",
37
+ "rignore >= 0.5.1",
38
+ "httpx >= 0.27.0",
39
+ "pydantic >= 2.8.2",
40
"rich-toolkit >= 0.6.3",
41
"pydantic >= 1.6.1",
42
src/fastapi_cli/cli.py
@@ -12,6 +12,7 @@
12
from fastapi_cli.exceptions import FastAPICLIException
13
14
from . import __version__
15
+from .commands.deploy import deploy
16
from .commands.login import login
17
from .commands.whoami import whoami
18
from .config import settings
@@ -281,6 +282,7 @@ def run(
281
282
283
284
# Additional commands
285
+app.command()(deploy)
286
app.command()(login)
287
app.command()(whoami)
288
0 commit comments