Deploying a simple CakePHP app to Render.com using Docker

Render doesn’t have a ā€œnative PHP runtimeā€ like it does for Node/Python, but it does have Docker. So we can use a Docker image that will set up the PHP runtime for us. To make it happen, we will have to add these two files to our application: Dockerfile that imports and uses a prebuilt… Continue reading Deploying a simple CakePHP app to Render.com using Docker

Python doesn’t print logs on Render.com

When you deploy a Python Web Service to Render.com, your print statements may not work. They may appear later if they get buffered, but in most cases you want them to be put out immediately in the console. Render logs everything output to STDOUT. So you’ll need to make sure you configure your logging library… Continue reading Python doesn’t print logs on Render.com