RedHatSE / redhatgov.workshops

This is a collection of Ansible-deployed workshop environments. Use it in combination with the student workbook content, from the repo at https://github.com/RedHatGov/redhatgov.github.io

Home Page:http://redhatgov.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Started

To use this project, you'll need (at minimum):

  • Python 2 >=2.7.9 or Python 3 >=3.4

Install

GNU/Linux, or macOS

git clone https://github.com/RedHatGov/redhatgov.workshops
cd redhatgov.workshops
No git? No problem!
DIRPATH="${HOME}/Downloads/redhatgov.workshops"; GITUSER="RedHatGov"
GITREPO="https://github.com/${GITUSER}/redhatgov.workshops/archive/master.zip"
ARCHIVE="$(printf "%s" "${GITREPO##*/}")"

# Download and extract
wget $GITREPO \
&& temp="$(mktemp -d)" \
&& unzip -d $temp $ARCHIVE \
&& mkdir -p $DIRPATH \
&& mv $temp/*/* $DIRPATH \
&& rm -rf $temp $ARCHIVE \
&& cd $DIRPATH \
&& unset DIRPATH GITUSER GITREPO ARCHIVE temp

About

This is a collection of Ansible-deployed workshop environments. Use it in combination with the student workbook content, from the repo at https://github.com/RedHatGov/redhatgov.github.io

http://redhatgov.io


Languages

Language:Python 55.3%Language:Jinja 29.1%Language:HTML 11.1%Language:Shell 4.1%Language:Dockerfile 0.2%Language:Vim Script 0.1%Language:JavaScript 0.1%