Kirill Shirinkin
Kirill Shirinkin
As of now, Copilot's pipeline is created for a single branch. I guess the reason is to enable continuous deployment, after running some tests, to the target environment. Once I...
I am looking into migrating background job worker to be fully serverless, with Lambda+SQS - one of reasons is to avoid paying for compute if no jobs are scheduled. At...
I have single code base that then can be started as a web service or a background worker (typical Ruby on Rails "majestic" monolith basically :D). I did it as...
See https://github.com/comfy/comfortable-mexican-sofa/pull/892
I've created a video tutorial on how to create Telegram bots with Serverless Framework. It's written in Ruby and is exposed over API Gateway - really full featured translation bot...
Is it possible to set default values? I would like to set certain constraints on incoming parameters while not requiring to fill in any of them, falling back to defaults...
Let's say I have two concepts: payment and article, both have compex forms which I want to make as cells. Structure is this: ``` app/concepts/payment/cell/form.rb app/concepts/payment/view/form.erb app/concepts/payment/view/form.js app/concepts/article/cell/form.rb app/concepts/article/view/form.erb app/concepts/article/view/form.js...
First of all, thanks for a great helper tools - really useful and simple. Recently I integrated `ssm-run` into Terraform, basically replacing SSH-based bootstrapping with Session Manager. This allows also...