ryanpineo / django-storages-folder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-storages-folder

About

django-storage-folder is a small extension to the django-storages-redux (a python3 compatible fork of django-storages) project that allows you to specify different directories for storing media and static files.

It currently only supports the s3boto backend.

How To Use

  1. Set the static files or media files storage backend
  2. Set the static files or media files storage directory

Example

STATICFILES_STORAGE = 'storages_folder.backends.s3boto.StaticStorage'
STATICFILES_STORAGE_DIR = 'static'

MEDIAFILES_STORAGE = 'storages_folder.backends.s3boto.MediaStorage'
MEDIAFILES_STORAGE_DIR = 'media'

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%