-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Google Cloud Storage in addition to S3 #1566
Comments
Our storages library provides a lot of settings. I think the only one there we will need to expose is We'll likely just directly expose more of the library's settings. The result would look like this: # Set the file storage to Google Cloud
DJANGO_DEFAULT_FILE_STORAGE='storages.backends.gcloud.GoogleCloudStorage'
# Poit to the right bucket
DJANGO_GS_BUCKET_NAME=... |
I think those two will do it! |
1572: Support Google Cloud Storage in addition to S3 r=peterbe,sciurus a=mythmon Fixes #1566 Co-authored-by: Mike Cooper <[email protected]>
1598: Fix name of setting for gcs bucket r=mythmon a=sciurus It should be GS_BUCKET_NAME according to the documentation at https://django-storages.readthedocs.io/en/latest/backends/gcloud.html This will hopefully fix #1566 Co-authored-by: Brian Pitts <[email protected]>
Normandy admin currently uploads addons to an S3 bucket. Normandy should support uploading to a GCS bucket as well.
Currently we have an DJANGO_AWS_STORAGE_BUCKET_NAME bucket name. Maybe we could also have a DJANGO_GCS_STORAGE_BUCKET_NAME, and the one that is set determines which storage to use?
The text was updated successfully, but these errors were encountered: