mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
12 lines
342 B
JSON
12 lines
342 B
JSON
{
|
|
"project_name": "My Awesome Project",
|
|
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
|
|
"python_version": "3.11.1",
|
|
"_copy_without_render": [
|
|
"*.html",
|
|
"*/activation*.txt"
|
|
],
|
|
"_extensions": [
|
|
"cookiecutter.extensions.RandomStringExtension"
|
|
]
|
|
}
|