Hi,I have been wondering where people put their non-app-specific static files in their django projects? For example, the base css file that applies to all pages across the project or perhaps the jquery file?Currently I have the following structure:.├── app│ ├── __init__.py│ ├── models.py│ ├── static│ │ └── app│ │ ├── css│ │ ├── img│ │ └── js│ ├── templates│ │ └── app│ ├── tests.py│ └── views.py├── manage.py└── mysite├── __init__.py├── settings.py├── static├── templates├── urls.py└── wsgi.pyMy STATIC_ROOT setting points to the ./mysite/static directory as this is where I would like collectstatic to dump all the static files for deployment, however this is also the obvious place (for me anyway) to place non-app-specific static files as they apply to the project as a whole like the templates directory at this level.Does any one have any input on this?Thanks,Ryan--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/4H39KqmnTugJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
└── mysite├── __init__.py├── settings.py
├── theme
├── __init__.py
├── models.py (empty file)
└── static
├── static├── templates├── urls.py└── wsgi.py
That is not a bad idea as everything that is project specific, but not app specific, would live in one place.Thanks,Ryan