diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-30 13:29:08 -0500 |
commit | 0929719a845897cc8567cf972e07a69a71f0fa6f (patch) | |
tree | 2b6f69c1d906abb6e0abf8a0f1d51725bc78087d /test/dummy/config/storage.yml | |
parent | 01c1947537e4e23ded0c16812a7cd9d49ad88356 (diff) | |
download | wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.gz wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.bz2 wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.zip |
Migrate to a full rails app
Diffstat (limited to 'test/dummy/config/storage.yml')
-rw-r--r-- | test/dummy/config/storage.yml | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test/dummy/config/storage.yml b/test/dummy/config/storage.yml deleted file mode 100644 index 4942ab6..0000000 --- a/test/dummy/config/storage.yml +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | test: | ||
2 | service: Disk | ||
3 | root: <%= Rails.root.join("tmp/storage") %> | ||
4 | |||
5 | local: | ||
6 | service: Disk | ||
7 | root: <%= Rails.root.join("storage") %> | ||
8 | |||
9 | # Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) | ||
10 | # amazon: | ||
11 | # service: S3 | ||
12 | # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> | ||
13 | # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> | ||
14 | # region: us-east-1 | ||
15 | # bucket: your_own_bucket-<%= Rails.env %> | ||
16 | |||
17 | # Remember not to checkin your GCS keyfile to a repository | ||
18 | # google: | ||
19 | # service: GCS | ||
20 | # project: your_project | ||
21 | # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> | ||
22 | # bucket: your_own_bucket-<%= Rails.env %> | ||
23 | |||
24 | # Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) | ||
25 | # microsoft: | ||
26 | # service: AzureStorage | ||
27 | # storage_account_name: your_account_name | ||
28 | # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> | ||
29 | # container: your_container_name-<%= Rails.env %> | ||
30 | |||
31 | # mirror: | ||
32 | # service: Mirror | ||
33 | # primary: local | ||
34 | # mirrors: [ amazon, google, microsoft ] | ||