trentpalmerdotorg/tp/storage_backends.py

19 lines
407 B
Python
Raw Normal View History

2021-02-24 20:13:54 -08:00
from storages.backends.s3boto3 import S3Boto3Storage
# from django.conf import settings
class StaticStorage(S3Boto3Storage):
location = 'static'
default_acl = 'public-read'
class PublicMP3Storage(S3Boto3Storage):
location = 'mp3'
default_acl = 'public-read'
# file_overwrite = False
class PublicImageStorage(S3Boto3Storage):
location = 'images'
default_acl = 'public-read'