mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
Use examples instead of HELP text
This commit is contained in:
parent
171c2a2a63
commit
ea8f6b8326
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue
Block a user