Merge pull request #55 from mattayes/52-lowercase-repo_name
#52 Make default repo_name lowercase
This commit is contained in:
commit
0249b43291
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"project_name": "project_name",
|
"project_name": "project_name",
|
||||||
"repo_name": "{{ cookiecutter.project_name|replace(' ', '_') }}",
|
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
|
||||||
"author_name": "Your name (or your organization/company/team)",
|
"author_name": "Your name (or your organization/company/team)",
|
||||||
"description": "A short description of the project.",
|
"description": "A short description of the project.",
|
||||||
"year": "2016",
|
"year": "2016",
|
||||||
|
|
Loading…
Reference in New Issue