mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
27 lines
804 B
JSON
27 lines
804 B
JSON
{
|
|
"project_name": "project_name",
|
|
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|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": "{% now 'local' %}",
|
|
"year": "{{ cookiecutter.now[:4] }}",
|
|
"use_whitenoise": "y",
|
|
"use_celery": "n",
|
|
"use_mailhog": "n",
|
|
"use_sentry": "n",
|
|
"use_newrelic": "n",
|
|
"use_opbeat": "n",
|
|
"use_pycharm": "n",
|
|
"windows": "n",
|
|
"use_python2": "n",
|
|
"use_docker": "y",
|
|
"use_heroku": "n",
|
|
"js_task_runner": ["Gulp", "Grunt", "None"],
|
|
"use_angular": "n",
|
|
"open_source_license": ["MIT", "BSD", "Not open source"]
|
|
}
|