cookiecutter-django/cookiecutter.json
Saurabh Kumar 7fb6f94d5e feat(static_storage): Add support for whitenoise (optional)
- Add option to opt for whitenoise via cookiecutter
- Seperate Media and Static Configuration

closes #213
2015-04-26 15:31:31 +05:30

14 lines
401 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": "2015/01/13",
"year": "{{ cookiecutter.now[:4] }}",
"use_whitenoise": "y"
}