mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 03:24:01 +03:00
Prettify cookiecutter.json
This commit is contained in:
parent
438ec0c101
commit
a40c9a2255
|
@ -1,24 +1,40 @@
|
|||
{
|
||||
"project_name": "Project Name",
|
||||
"project_name": "My Awesome Project",
|
||||
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
|
||||
"description": "Behold My Awesome Project!",
|
||||
"author_name": "Daniel Roy Greenfeld",
|
||||
"email": "you@example.com",
|
||||
"description": "A short description of the project.",
|
||||
"email": "{{ cookiecutter.project_name.lower() }}@example.com",
|
||||
"domain_name": "example.com",
|
||||
"version": "0.1.0",
|
||||
"open_source_license": [
|
||||
"MIT",
|
||||
"BSD",
|
||||
"GPLv3",
|
||||
"Apache Software License 2.0",
|
||||
"Not open source"
|
||||
],
|
||||
"timezone": "UTC",
|
||||
"use_whitenoise": "y",
|
||||
"windows": "n",
|
||||
"use_pycharm": "n",
|
||||
"use_docker": "n",
|
||||
"postgresql_version": [
|
||||
"10",
|
||||
"9.6",
|
||||
"9.5",
|
||||
"9.4",
|
||||
"9.3"
|
||||
],
|
||||
"js_task_runner": [
|
||||
"Gulp",
|
||||
"Grunt",
|
||||
"None"
|
||||
],
|
||||
"custom_bootstrap_compilation": "n",
|
||||
"use_compressor": "n",
|
||||
"use_celery": "n",
|
||||
"use_mailhog": "n",
|
||||
"use_sentry_for_error_reporting": "y",
|
||||
"use_opbeat": "n",
|
||||
"use_pycharm": "n",
|
||||
"windows": "n",
|
||||
"use_docker": "n",
|
||||
"use_heroku": "n",
|
||||
"use_compressor": "n",
|
||||
"postgresql_version": ["10", "9.6", "9.5", "9.4", "9.3"],
|
||||
"js_task_runner": ["Gulp", "Grunt", "None"],
|
||||
"custom_bootstrap_compilation": "n",
|
||||
"open_source_license": ["MIT", "BSD", "GPLv3", "Apache Software License 2.0", "Not open source"]
|
||||
"use_whitenoise": "y",
|
||||
"use_heroku": "n"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user