agne6ka / duke-cloud-computing

Cloud Computing Foundations by Duke University Course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cloud Computing Foundations

by Duke University

Learning goals

  • 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 =>

Projects

Scaffold

Test build Scaffold

  1. Go to scaffold directory

    cd scaffold
  2. Create Python virtual environment

    python3 -m venv ~/.scaffold
  3. Activate the venv

    source ~/.scaffold/bin/activate
  4. Install required packages

    make install

    Useful commands

    make all # install run test at once
    deactivate # exit the venv

Hugo App

Build with CodeBuild

  1. Go to hugo-app

    cd hugo-app
  2. 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
  3. Uncompress the file

    tar zxvf hugo_0.119.0_Linux-64bit.tar.gz
  4. Create /bin path if not exists

    mkdir -p ~/bin
  5. Move the binary file to bin folder

    mv hugo ~/bin/
  6. Build public files

    hugo
  7. Serve hugo app

    hugo serve

About

Cloud Computing Foundations by Duke University Course


Languages

Language:Jupyter Notebook 52.4%Language:Python 33.9%Language:Makefile 13.7%