Quick Way to Install the Latest jQuery, Bootstrap and Dependencies Locally?
Is there a quick PyCharm way of installing the latest jQuery, Bootstrap (4 at the moment) and dependencies (ex: popper) locally?
Extra context
I make new projects all the time in PyCharm. 99% of those projects are Django-based. In my Django-based projects, I typically use Bootstrap.
Currently, I go to jQuery and Bootstrap websites to get download and save these files into my static folders as-needed.
Since I do this so much, is there a better / faster way? I realize I could just copy/paste from another project, but then I'd have to go track it down, and maybe those aren't the latest versions ,etc.
Any tips or workflow advice would be appreciated.
请先登录再写评论。
Downloading the files manually and setting up the application according to instructions in https://docs.djangoproject.com/en/2.2/howto/static-files/ is still the best way to go
see https://www.tangowithdjango.com/book17/chapters/jquery.html, for example
And no, there is no special support for this in the IDE
Helpful as always. Thanks Elena.