mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 05:06:58 +03:00
4aff5971d1
Allow for dynamic bootstrap compilation Exclude sublime artifacts Make custom bootstrap vars file Add custom bootstrap compilation Add cookiecutter option Use the right name for the file Add explanation to generated README Add self to contributors Remove sublime exclusion
27 lines
939 B
JSON
27 lines
939 B
JSON
{
|
|
"project_name": "Project Name",
|
|
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
|
|
"author_name": "Daniel Roy Greenfeld",
|
|
"email": "you@example.com",
|
|
"description": "A short description of the project.",
|
|
"domain_name": "example.com",
|
|
"version": "0.1.0",
|
|
"timezone": "UTC",
|
|
"use_whitenoise": "y",
|
|
"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_elasticbeanstalk_experimental": "n",
|
|
"use_compressor": "n",
|
|
"postgresql_version": ["9.6", "9.5", "9.4", "9.3", "9.2"],
|
|
"js_task_runner": ["Gulp", "Grunt", "None"],
|
|
"use_lets_encrypt": "n",
|
|
"custom_bootstrap_compilation": "n",
|
|
"open_source_license": ["MIT", "BSD", "GPLv3", "Apache Software License 2.0", "Not open source"]
|
|
}
|