General Options
Theme Options
Security Options
SEO Options
$ pip install django-storages-reduxAlso you must install Apache Libcloud:
$ pip install apache-libcloudAnd enable from settings.py by adding following lines:
DEFAULT_FILE_STORAGE = 'storages.backends.apache_libcloud.LibCloudStorage'If you don't create bucket, you can create from shell:
DEFAULT_LIBCLOUD_PROVIDER = 'google_storage'
LIBCLOUD_PROVIDERS = {
'google_storage': {
'type': 'libcloud.storage.types.Provider.GOOGLE_STORAGE',
'user': 'yourcloudstorageapikey:)',
'key': 'yourcloudstorageapisecretkey:)',
'bucket': 'default-bucket-name',
}
}
$ ./manage.py shell
$ from storages.backends.apache_libcloud import LibCloudStorage
$ LibCloudStorage('google_storage').driver.create_container('default-bucket-name')