Use examples instead of HELP text

This commit is contained in:
Daniel Roy Greenfeld 2016-08-24 14:52:59 -07:00
parent 171c2a2a63
commit ea8f6b8326
2 changed files with 6 additions and 6 deletions

View File

@ -107,10 +107,10 @@ Answer the prompts with your own desired options_. For example::
remote: Total 550 (delta 283), reused 479 (delta 222)
Receiving objects: 100% (550/550), 127.66 KiB | 58 KiB/s, done.
Resolving deltas: 100% (283/283), done.
project_name [The name of your project]: Reddit Clone
project_name [Project Name]: Reddit Clone
project_slug [reddit_clone]: reddit
author_name [Your Name]: Daniel Roy Greenfeld
email [Your email]: pydanny@gmail.com
author_name [Daniel Roy Greenfeld]: Daniel Greenfeld
email [you@example.com]: pydanny@gmail.com
description [A short description of the project.]: A reddit clone.
domain_name [example.com]: myreddit.com
version [0.1.0]: 0.0.1

View File

@ -1,8 +1,8 @@
{
"project_name": "The name of your project",
"project_name": "Project Name",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"author_name": "Your Name",
"email": "Your email",
"author_name": "Daniel Roy Greenfeld",
"email": "you@example.com",
"description": "A short description of the project.",
"domain_name": "example.com",
"version": "0.1.0",