Skip to content

Cloud Computing Foundations by Duke University Course

Notifications You must be signed in to change notification settings

amnak613/cloud-computing

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 52.4%
  • Python 33.9%
  • Makefile 13.7%