From 8af754e1087d662ab68964aa67685d48b8e7c4fc Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 10 Oct 2018 08:03:13 +0100 Subject: Run rails new testapp --skip-bundle --- testapp/config/cable.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 testapp/config/cable.yml (limited to 'testapp/config/cable.yml') diff --git a/testapp/config/cable.yml b/testapp/config/cable.yml new file mode 100644 index 0000000..8dca95a --- /dev/null +++ b/testapp/config/cable.yml @@ -0,0 +1,10 @@ +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> + channel_prefix: testapp_production -- cgit v1.2.3