mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-15 09:24:52 +03:00
Tweak options order
This commit is contained in:
parent
f6372c3ec2
commit
d5de24ef6d
|
@ -110,10 +110,6 @@ Answer the prompts with your own desired [options](http://cookiecutter-django.re
|
|||
author_name [Daniel Roy Greenfeld]: Daniel Greenfeld
|
||||
domain_name [example.com]: myreddit.com
|
||||
email [daniel-greenfeld@example.com]: pydanny@gmail.com
|
||||
Select username_type:
|
||||
1 - username
|
||||
2 - email
|
||||
Choose from 1, 2 [1]: 1
|
||||
version [0.1.0]: 0.0.1
|
||||
Select open_source_license:
|
||||
1 - MIT
|
||||
|
@ -122,6 +118,10 @@ Answer the prompts with your own desired [options](http://cookiecutter-django.re
|
|||
4 - Apache Software License 2.0
|
||||
5 - Not open source
|
||||
Choose from 1, 2, 3, 4, 5 [1]: 1
|
||||
Select username_type:
|
||||
1 - username
|
||||
2 - email
|
||||
Choose from 1, 2 [1]: 1
|
||||
timezone [UTC]: America/Los_Angeles
|
||||
windows [n]: n
|
||||
use_pycharm [n]: y
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
"author_name": "Daniel Roy Greenfeld",
|
||||
"domain_name": "example.com",
|
||||
"email": "{{ cookiecutter.author_name.lower() | trim() |replace(' ', '-') }}@{{ cookiecutter.domain_name.lower() | trim() }}",
|
||||
"username_type": ["username", "email"],
|
||||
"version": "0.1.0",
|
||||
"open_source_license": [
|
||||
"MIT",
|
||||
|
@ -14,6 +13,7 @@
|
|||
"Apache Software License 2.0",
|
||||
"Not open source"
|
||||
],
|
||||
"username_type": ["username", "email"],
|
||||
"timezone": "UTC",
|
||||
"windows": "n",
|
||||
"use_pycharm": "n",
|
||||
|
|
Loading…
Reference in New Issue
Block a user