Good day! I need advice on organizing a project on Django using Bower.
Simplified project structure:
src ├── apps ├── base ├── common │ ├── static │ │ ├── css │ │ ├── img │ │ └── js │ ├── templates │ └── views ├── manage.py ├── requirements.txt └── utils Current scripts are stored in the directory.
common/static/js Where to store libraries loaded with bower? (I know about the possibility of installing on the server from the manifest, but I plan to include them in the repository)
It is reasonable to change the default directory in bower settings with
bower_components/ on
common/script/js so that all scripts (external and samopisnye) were stored in one directory? Or is such an organization of the project incorrect?
Please share your comments and tips on the organization of the project structure.
