Building My Portfolio: From Zero to Deployed
I built and deployed my portfolio site after reading Logan Marchione’s post about DevOps projects for beginners. The project covers infrastructure provisioning, server configuration, web server se...
I built and deployed my portfolio site after reading Logan Marchione’s post about DevOps projects for beginners. The project covers infrastructure provisioning, server configuration, web server se...
Here’s my entire continuous deployment pipeline for the blog that you are reading: #!/bin/bash while true do git pull jekyll build sudo rsync -r _site/* /var/www/html echo sleeping... s...