Last active
December 15, 2018 15:41
-
-
Save huhn511/0bf00bb7ad34d980e7f6d133113fe8d3 to your computer and use it in GitHub Desktop.
Declare a Google Cloud Storage service in config/storage.yml:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test: | |
service: Disk | |
root: <%= Rails.root.join("tmp/storage") %> | |
local: | |
service: Disk | |
root: <%= Rails.root.join("storage") %> | |
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) | |
# amazon: | |
# service: S3 | |
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> | |
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> | |
# region: us-east-1 | |
# bucket: your_own_bucket | |
# Remember not to checkin your GCS keyfile to a repository | |
google: | |
service: GCS | |
project: project_name | |
credentials: <%= Rails.root.join("config/gcs.json") %> | |
bucket: project_bucket_name | |
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) | |
# microsoft: | |
# service: AzureStorage | |
# storage_account_name: your_account_name | |
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> | |
# container: your_container_name | |
# mirror: | |
# service: Mirror | |
# primary: local | |
# mirrors: [ amazon, google, microsoft ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment