问题
I have Django website with scrapper which every day download images, so I want to automate collectstatic with crontab I tried this add to crontab.cr
yes | python2.7 manage.py collectstatic
but I get error :
You have requested to collect static files at the destination location as specified in your settings:
/home/mojbutik/webapps/webshop/myproject/static
This will overwrite existing files! Are you sure you want to do this?
CommandError: Collecting static files cancelled.
Can someone tell me how to do it...
回答1:
Did you try that command?
python manage.py collectstatic --noinput
来源:https://stackoverflow.com/questions/27323350/django-collecstatic-with-crontab