Tweak options order

This commit is contained in:
Bruno Alla 2023-04-05 09:32:06 +01:00
parent f6372c3ec2
commit d5de24ef6d
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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",