mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-03 13:14:28 +03:00
Transform project name to lowercase for slug.
This commit is contained in:
parent
bfc4703626
commit
dcf9509cbb
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"project_name": "project_name",
|
"project_name": "project_name",
|
||||||
"repo_name": "{{ cookiecutter.project_name|replace(' ', '_')|replace('-', '_') }}",
|
"repo_name": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
|
||||||
"author_name": "Your Name",
|
"author_name": "Your Name",
|
||||||
"email": "Your email",
|
"email": "Your email",
|
||||||
"description": "A short description of the project.",
|
"description": "A short description of the project.",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user