Deploy Remix on Azure App Service

Note: this guide focus on App Service Windows hosting platform, not for Linux. In this guide, we will deploy a simple Remix app on Azure App Service. I had a hard time to get it working, so I hope this guide will help you. Below are an overview of the stack: Remix v1.18.1 with Express server GitHub Actions for CI/CD Azure App Service Hosting platform: Windows Node.js 18 LTS Create a new Remix app First, we need to create a new Remix app....

July 1, 2023 · 5 min

Setup Prettier

In this guide, we are integrating the prettier formatter in our projects. We can break it down to the following steps: Installation Run as Git hook VSCode integration Installation Instead of using npx we will install prettier locally, because we want to lock down the version of prettier and it will be faster to execute each time. npm install --save-dev --save-exact prettier@v3 Prettier ships with a set of sensible defaults, but if we want to override any of them, here’s what to do:...

June 1, 2023 · 3 min