From f23bebb60736d9de24c176916d7fd28cc9533da3 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Fri, 20 Sep 2024 13:12:47 -0700 Subject: [PATCH] Remove unused config/cable.yml and config/store.yml files We're not using the ActionCable or ActiveStorage Rails features in this app, so we can clear out these default config files. If we need them later, it's not hard to re-find / re-generate them! --- config/cable.yml | 10 ---------- config/storage.yml | 34 ---------------------------------- 2 files changed, 44 deletions(-) delete mode 100644 config/cable.yml delete mode 100644 config/storage.yml diff --git a/config/cable.yml b/config/cable.yml deleted file mode 100644 index c16ed4cc4..000000000 --- a/config/cable.yml +++ /dev/null @@ -1,10 +0,0 @@ -development: - adapter: async - -test: - adapter: test - -production: - adapter: redis - url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> - channel_prefix: openneo_impress_items_production diff --git a/config/storage.yml b/config/storage.yml deleted file mode 100644 index d32f76e8f..000000000 --- a/config/storage.yml +++ /dev/null @@ -1,34 +0,0 @@ -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: your_project -# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> -# bucket: your_own_bucket - -# 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 ]