Skip to main content

Posts

Automated Deployment with Bash

·6 mins
You’ve built a cool new application. It works perfectly on your laptop. Now, how do you get it to run on an actual server where real users can access it? You could manually SSH into the server, install Docker, copy files, configure Nginx, and pray it all goes as planned. Or… you could just like automate everything?

Deploying a Microservices Todo Application

·23 mins
So, you’ve built a microservices TODO application that runs on your laptop. Maybe you have a frontend, a few APIs, a database. Heck, it even works perfectly at localhost:3000. But it’s too boring to have this masterpiece sit quietly on your local machine, you want others to access it! But: