I have a custom storage
import os from django.core.files.storage import Storage class AlwaysOverwriteFileSystemStorage(Storage): def get_available_name(sel
You can put it anywhere, but you should point the path to there in the settings.py
You can put this storage.py file in the root folder (the one that has manage.py) and point the path as storage.AlwaysOverwriteFileSystemStorage
storage.py
manage.py
storage.AlwaysOverwriteFileSystemStorage