Skip to content

Releases: fastapi/fastapi-cli

0.0.20

22 Dec 17:13

Choose a tag to compare

Features

0.0.19

22 Dec 17:07

Choose a tag to compare

Breaking Changes

0.0.18

22 Dec 17:04

Choose a tag to compare

Features

Fixes

0.0.17

22 Dec 16:54

Choose a tag to compare

Upgrades

Internal

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