0 Comments
illustration with a man watching two screens

Setting up GitLab Runner on GCP VM Instance

If you’re using GitLab CI/CD to automate your software development workflow, you’ll need to set up one or more GitLab Runners to execute your CI/CD pipelines. A GitLab Runner is a lightweight agent that runs on a machine and listens for jobs from a GitLab instance.

In this post, we’ll show you how to set up a GitLab Runner on a GCP virtual machine (VM) running Ubuntu 18.04. This will allow you to run your CI/CD pipelines on a dedicated VM in the cloud, which can help improve the reliability and performance of your pipelines.

0 Comments

How to Dump Database using DBeaver

Download and Install DBeaver from their site Remove the snap version if you’re on Linux since Snap won’t allow you to access you’re root directories outside your app installation folder In DBeaver, right-click the database and click Tools > Backup. Click on Load Client and load the pg_dump client from your directory ( typically /usr/bin/ if […]

0 Comments
Code background with React plus webpack

How to add React to a static website

In the blog, we are going to see how to add react (with webpack and babel) to a static website. So a few days ago, I was working on my person site and I was looking for a way to add react to my static portfolio website. I already had setup the site with a […]