Since Stephen's changes and my last git pull, the media files won't served
anymore on a default project. Can anyone confirm this?
Am Donnerstag, 6. Februar 2014 00:02:33 UTC+1 schrieb Eduardo Rivas:
>
> As Stephen said, it is recommended you only use STATIC_ROOT to contain
> files rounded up by collectstatic when deploying. The directory "/static"
> is listed in .gitignore and .hgignore for this same reason. Just in case
> someone is wondering what to do with files that don't belong to any app,
> this is what I do:
>
> 1. Create "assets/" (or whatever you want to name it) in your project
> root. Dump your general purpose static resources there.
> 2. In settings.py define STATICFILES_DIRS =
> (os.path.join(PROJECT_ROOT, "assets"),). This will tell Django to see
> "assets/" as a valid location for static files.
> 3. Access your files in the templates. For example, "assets/style.css"
> will be accessed by {% static "style.css" %}.
>
> Just my two cents :)
>
--
You received this message because you are subscribed to the Google Groups
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.