You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
247 B
Python
11 lines
247 B
Python
5 years ago
|
from django.conf import settings
|
||
|
from storages.backends.s3boto3 import S3Boto3Storage
|
||
|
|
||
|
|
||
|
class StaticStorage(S3Boto3Storage):
|
||
|
location = settings.STATICFILES_LOCATION
|
||
|
|
||
|
|
||
|
class MediaStorage(S3Boto3Storage):
|
||
|
location = settings.MEDIA_LOCATION
|