Compare commits
No commits in common. "7f554564544f03deca03753c9c3f3437bf79f38f" and "cf2cd41531149919d42b3c9c5e55f3069889bd55" have entirely different histories.
7f55456454
...
cf2cd41531
3 changed files with 45 additions and 1 deletions
|
@ -9,11 +9,11 @@ require "rails"
|
||||||
# Disabled:
|
# Disabled:
|
||||||
# - active_storage/engine
|
# - active_storage/engine
|
||||||
# - active_job/railtie
|
# - active_job/railtie
|
||||||
# - action_cable/engine
|
|
||||||
# - action_mailbox/engine
|
# - action_mailbox/engine
|
||||||
# - action_text/engine
|
# - action_text/engine
|
||||||
%w(
|
%w(
|
||||||
active_record/railtie
|
active_record/railtie
|
||||||
|
action_cable/engine
|
||||||
action_controller/railtie
|
action_controller/railtie
|
||||||
action_view/railtie
|
action_view/railtie
|
||||||
action_mailer/railtie
|
action_mailer/railtie
|
||||||
|
|
10
config/cable.yml
Normal file
10
config/cable.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
development:
|
||||||
|
adapter: async
|
||||||
|
|
||||||
|
test:
|
||||||
|
adapter: test
|
||||||
|
|
||||||
|
production:
|
||||||
|
adapter: redis
|
||||||
|
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
|
||||||
|
channel_prefix: openneo_impress_items_production
|
34
config/storage.yml
Normal file
34
config/storage.yml
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
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 ]
|
Loading…
Reference in a new issue