Skip to content

Releases: fastapi/fastapi-cli

0.0.16

10 Nov 19:00

Choose a tag to compare

Fixes

0.0.15

10 Nov 15:46

Choose a tag to compare

Features

  • ✨ Add support for reading configuration from pyproject.toml. PR #236 by @patrick91.

You can use it in pyproject.toml like:

[tool.fastapi]
entrypoint = "some.importable_module:app_name"

Internal

0.0.14

20 Oct 16:32

Choose a tag to compare

Upgrades

  • ⬆️ Add support for Python 3.13 and 3.14. PR #225 by @svlandeg.

Internal

0.0.13

20 Sep 16:37

Choose a tag to compare

Features

0.0.12

17 Sep 19:11

Choose a tag to compare

Features

  • ✨ Add support for the PORT environment variable. PR #209 by @buurro.

Internal

0.0.11

09 Sep 12:50

Choose a tag to compare

Features

  • ✨ Add support for passing apps as fastapi run --entrypoint some.importable_module:app_name. PR #199 by @patrick91.

If you have been using Uvicorn like:

$ uvicorn some.importable_module:app_name

Now you can use the same "entrypoint" syntax with fastapi:

$ fastapi run -e some.importable_module:app_name

Or:

$ fastapi run --entrypoint some.importable_module:app_name

Internal

0.0.10

31 Aug 17:42

Choose a tag to compare

Features

Internal

0.0.9

31 Aug 16:34

Choose a tag to compare

Fixes

  • 🔧 Remove command script fastapi, let it be provided by the fastapi package. PR #197 by @tiangolo.

0.0.8

07 Jul 14:43

Choose a tag to compare

Features

  • ➕ Add optional dependency on fastapi-cloud-cli. PR #181 by @tiangolo.

This will allow you to deploy to FastAPI Cloud with the fastapi deploy command.

Installing fastapi-cli[standard] now includes fastapi-cloud-cli.

If you want to install fastapi-cli without fastapi-cloud-cli, you can install instead fastapi-cli[standard-no-fastapi-cloud-cli].

You will normally not install fastapi-cli directly, but rather install FastAPI with fastapi[standard], which will include fastapi-cli[standard].

If you want to install fastapi with the standard dependencies except for fastapi-cloud-cli, you can install instead fastapi[standard-no-fastapi-cloud-cli].

Internal

0.0.7

15 Dec 14:27

Choose a tag to compare

Fixes

  • 🐛 Do not disable existing loggers. PR #132 by @kraftp.

Internal