diff --git a/README.md b/README.md index 6c6e99361..320003bfb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/cookiecutter.json b/cookiecutter.json index 4a6928adf..c9ad19394 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -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",