1👍
✅
You can use a workaround. Create a file called local_settings.py and set a different storage. After, in your settings import the module:
try:
from local_settings import *
except ImportError:
pass
Keep that file only in the local version of your site.
Source:stackexchange.com