Nick Hammond

Results 75 comments of Nick Hammond

I know this is an old issue but now that Slack has a native RSS app that you can connect I thought I might mention it. We could just have...

Is there a PR for this yet? I noticed the solid_cable gem is utilizing this approach, just started testing it with a project. https://github.com/npezza93/solid_cable

@technicalpickles It's [email protected]. Thanks for all of your awesome articles/tutorials over the years! I remember reading your articles quite a bit back when it was the Linode Library and various...

@mbajur Do you have `config.hosts` set to anything? What about `config.action_cable.allowed_request_origins`? If you look in the network tab for the websocket request what is the response code?

@nickhammond Hmm. Weird, I have a few apps using ActionCable that are deployed via Kamal. It looks like I do set `config.action_cable.allowed_request_origins` though to the hostname. Are you using these...

@djmb Yah, I'll explore that this week when I get some time.

@djmb Just added in the interactive version with `run_locally`. I'm not super familiar with SSHKit so if there's a better way to do this let me know. It mirrors the...

Re: #1 I don't think you'd be able to do fully dynamic branch deploys but you could configure a bunch of destinations/servers and deploy to those. Re: #2 yes, you...

Instead of passing in the template what about instead using `.env.destination.erb` or `.env.template.erb` as the default template? Then setup could just be: 1. Create .env.template.erb and utilize `ENV['KAMAL_DESTINATION']` 2. Run...

I ended up working with the current functionality and utilizing ERB to create a template for this, figured I'd share. _.env.template.erb_ ``` # Generated by kamal envify on , to...