mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
9 lines
273 B
JSON
9 lines
273 B
JSON
{
|
|
"project_name": "My Awesome Project",
|
|
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
|
|
"python_version": "3.10.7",
|
|
"poetry_version": "1.1.15",
|
|
"_copy_without_render": [
|
|
"*.html"
|
|
]
|
|
}
|