I'm new to Django. I'm using Django-Pipeline with Bower. I followed this documentation
Here's the structure of my Django project:
|- myProject
|- manage.py
|- bower.json
|- bower_components
|- jquery
|- bootstrap
|- ...
|- myProject
|- settings.py
|- static // This is the folder that gets created
|- jquery
|- bootstrap
|- ...
|- myApp
Is it a normal behaviour for Django to create a "static" directory inside myProject? If I manually delete the static folder, it automatically gets created at the next page refresh.
What I don't get is I have specified where to find static files using the STATICFILES_DIRS setting. So to me it would seem logical that Django (in development environment at least) would serve files directly from my bower components folder.
Am I missing something?
EDIT: I am not running collectstatic. This folder gets created just when I refresh the page.