cookiecutter-django/cookiecutter.json

14 lines
432 B
JSON
Raw Normal View History

2022-10-28 19:38:57 +02:00
{
"project_name": "My Awesome Project",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
2022-12-16 22:11:56 +01:00
"python_version": "3.11.1",
"python_version_slug": "py{{ cookiecutter.python_version.split('.')[:2] | join('') }}",
2022-10-28 19:38:57 +02:00
"_copy_without_render": [
"*.html",
"*/activation*.txt"
],
"_extensions": [
"cookiecutter.extensions.RandomStringExtension"
2022-10-28 19:38:57 +02:00
]
}