diff --git a/fastapi_template/template/{{cookiecutter.project_name}}/README.md b/fastapi_template/template/{{cookiecutter.project_name}}/README.md index 743637d4d6942ad93032c216a18adca164b11e62..defe621cd2d2dbbc3247102e4b28bf35f24237a6 100644 --- a/fastapi_template/template/{{cookiecutter.project_name}}/README.md +++ b/fastapi_template/template/{{cookiecutter.project_name}}/README.md @@ -64,7 +64,7 @@ aerich downgrade {%- endif %} ``` -### Miration generation +### Migration generation To generate migrations you should run: ```bash diff --git a/fastapi_template/template/{{cookiecutter.project_name}}/pyproject.toml b/fastapi_template/template/{{cookiecutter.project_name}}/pyproject.toml index c3b760d84b5dbce7c40feb2a2ab7c79e65e30aaa..6787148918beb43e5aa9d17bad755071c1525728 100644 --- a/fastapi_template/template/{{cookiecutter.project_name}}/pyproject.toml +++ b/fastapi_template/template/{{cookiecutter.project_name}}/pyproject.toml @@ -84,6 +84,7 @@ asynctest = "^0.13.0" [tool.isort] profile = "black" multi_line_output = 3 +src_paths = ["{{cookiecutter.project_name}}",] [tool.mypy] strict = true diff --git a/pyproject.toml b/pyproject.toml index ea4fccb2a02f0b0f93dfd230e349e068785ae7a8..b5e51c4adb00074e6bf6bd6ed3e4785428d658c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fastapi_template" -version = "3.1.7" +version = "3.1.8" description = "Feature-rich robust FastAPI template" authors = ["Pavel Kirilin <win10@list.ru>"] packages = [{ include = "fastapi_template" }]