TIL: Deploying a Sinatra app to Render.com

from blog Good Enough, | ↗ original
This morning I wanted to deploy a simple Sinatra app to Render.com. It wasn’t super obvious to me, so I figured I’d write down what worked in the end. First, a Gemfile: # Gemfilesource 'https://rubygems.org'gem 'sinatra'gem 'sinatra-contrib'gem 'puma' * I’m pretty sure sinatra-contrib is not necessary. Also at this point in time you’ll need to...