Custom collectstatic for django with ignoring commonly copied unnecessary files
Available via PyPi, supports Python 2.x and 3.x.
pip install django-collect-and-ignore
./manage.py collect_and_ignore --additional_options
Can be tweaked from django settings by adding optional parameters:
- COLLECT_AND_IGNORE_PATTERNS [patters to ignore, needs to be a list of strings]
- COLLECT_AND_IGNORE_NO_INPUT [wheter to ask for input, boolean, default is False]
DEFAULT_PATTERNS = [
'__tests__',
'tests',
'*.test.js',
'*.scss',
'*.less',
'config.rb'
]
MIT.