Transform project name to lowercase for slug.

This commit is contained in:
Audrey Roy Greenfeld 2016-04-20 10:46:07 -07:00
parent 15f350f05e
commit 817abc3652

View File

@ -1,6 +1,6 @@
{
"project_name": "project_name",
"project_slug": "{{ cookiecutter.project_name|replace(' ', '_')|replace('-', '_') }}",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"author_name": "Your Name",
"email": "Your email",
"description": "A short description of the project.",