From 0929719a845897cc8567cf972e07a69a71f0fa6f Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 30 Nov 2023 13:29:08 -0500 Subject: Migrate to a full rails app --- config/cable.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 config/cable.yml (limited to 'config/cable.yml') diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 0000000..46d6557 --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,10 @@ +development: + adapter: async + +test: + adapter: test + +production: + adapter: redis + url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> + channel_prefix: wittle_production -- cgit 1.4.1