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.
1 parent fc1c2d0 commit 4cd9a75Copy full SHA for 4cd9a75
fastapi_template/template/{{cookiecutter.project_name}}/pyproject.toml
@@ -218,6 +218,13 @@ src_folder = "./{{cookiecutter.project_name}}"
218
{%- endif %}
219
220
221
+[fastapi-template.options]
222
+{%- for key, value in cookiecutter.items() %}
223
+{%- if not key.startswith("_") and not key == "db_info" %}
224
+{{key}} = "{{value}}"
225
+{%- endif %}
226
+{%- endfor %}
227
+
228
[build-system]
229
requires = ["poetry-core>=1.0.0"]
230
build-backend = "poetry.core.masonry.api"
0 commit comments