mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
22 lines
625 B
JSON
22 lines
625 B
JSON
{
|
|
"project_name": "project_name",
|
|
"repo_name": "{{ cookiecutter.project_name|replace(' ', '_') }}",
|
|
"author_name": "Your Name",
|
|
"email": "Your email",
|
|
"description": "A short description of the project.",
|
|
"domain_name": "example.com",
|
|
"version": "0.1.0",
|
|
"timezone": "UTC",
|
|
"now": "2016/01/29",
|
|
"year": "{{ cookiecutter.now[:4] }}",
|
|
"use_whitenoise": "y",
|
|
"use_celery": "n",
|
|
"use_mailhog": "n",
|
|
"use_sentry": "n",
|
|
"use_newrelic": "n",
|
|
"use_opbeat": "n",
|
|
"windows": "n",
|
|
"use_python2": "n",
|
|
"open_source_license": ["MIT", "BSD", "Not open source"]
|
|
}
|