mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-01 10:49:50 +03:00
#342 Add compressor option to requirements
This commit is contained in:
parent
05c521dd61
commit
2e9b4c20a8
|
@ -22,5 +22,6 @@
|
||||||
"use_heroku": "n",
|
"use_heroku": "n",
|
||||||
"use_grunt": "n",
|
"use_grunt": "n",
|
||||||
"use_angular": "n",
|
"use_angular": "n",
|
||||||
|
"use_compressor": "n",
|
||||||
"open_source_license": ["MIT", "BSD", "Not open source"]
|
"open_source_license": ["MIT", "BSD", "Not open source"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,4 +55,8 @@ redis>=2.10.0
|
||||||
celery==3.1.23
|
celery==3.1.23
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if cookiecutter.use_compressor == "y" %}
|
||||||
|
django_compressor==2.0
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
# Your custom requirements go here
|
# Your custom requirements go here
|
||||||
|
|
Loading…
Reference in New Issue
Block a user