From 56f5841d4b9c12296cdfcaeff174b2627d59afc8 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 7 Dec 2024 11:49:49 -0500 Subject: Migrate to 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..c80654e --- /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: pokeviewer_production -- cgit 1.4.1