Skip to content
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

Deploy to testnet #2150

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
:redis_cache_store, {
url: ENV["REDIS_URL"],
driver: :hiredis,
namespace: ENV["CACHE_NAMESPACE"]
namespace: ENV["CACHE_NAMESPACE"],
}

# Use a real queuing backend for Active Job (and separate queues per environment).
Expand All @@ -77,7 +77,7 @@
authentication: "plain",
enable_starttls_auto: true,
open_timeout: 5,
read_timeout: 5
read_timeout: 5,
}

# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
Expand All @@ -103,9 +103,11 @@
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false

client = Dalli::Client.new(ENV["MEMCACHED_URL"],
value_max_bytes: 10485760)
config.action_dispatch.rack_cache = {
verbose: true,
metastore: File.join(ENV["MEMCACHED_URL"], "meta"),
entitystore: File.join(ENV["MEMCACHED_URL"], "body")
metastore: client,
entitystore: client,
}
end
Loading