nvbn / django-bower

Easy way to use bower with your django project
https://django-bower.readthedocs.io/
517 stars 73 forks source link

Support for arguments to bower #15

Open blueyed opened 10 years ago

blueyed commented 10 years ago

I would like to pass --config.interactive=false to bower, to prevent the "May bower anonymously report usage statistics to improve the tool over time?" question during building / setting up.

Workaround: create a wrapper script and use that with settings.BOWER_PATH or install a bowerrc file:

{
  "interactive": false
}
nvbn commented 10 years ago

You can use:

./manage.py bower install -- --config.interactive=false
blueyed commented 10 years ago

But that does not work with manage.py bower_install, does it?

I use this for deployment. Is it recommended to create a bower.json file (probably via manage.py bower install -- -s) instead, and then use manage.py bower install to install them?

mpasternak commented 9 years ago

Upvote. I'm missing "install -F" :+1: