- Learn how to build continuous delivery pipelines.
- Learn about the different types of Cloud service models.
- Learn how to utilize Infrastructure as Code to manage Cloud Infrastructure.
- Put theory into practice by doing the project.
Open the notes from course =>
-
Go to scaffold directory
cd scaffold
-
Create Python virtual environment
python3 -m venv ~/.scaffold
-
Activate the venv
source ~/.scaffold/bin/activate
-
Install required packages
make install
Useful commands
make all # install run test at once deactivate # exit the venv
-
Go to hugo-app
cd hugo-app
-
Download hugo with compressed binary
wget https://github.com/gohugoio/hugo/releases/download/v0.119.0/hugo_0.119.0_Linux-64bit.tar.gz # wget https://github.com/gohugoio/hugo/releases/download/v0.119.0/hugo_0.119.0_linux-arm64.tar.gz # AArch64
-
Uncompress the file
tar zxvf hugo_0.119.0_Linux-64bit.tar.gz
-
Create
/bin
path if not existsmkdir -p ~/bin
-
Move the binary file to
bin
foldermv hugo ~/bin/
-
Build public files
hugo
-
Serve hugo app
hugo serve