WWU Version hosted at wwudevops.github.io/website.
OSU Version hosted at devopsbootcamp.osuosl.org.
sudo apt-get install build-essential
sudo apt-get install libtiff4-dev libjpeg8-dev zlib1g-dev \
libfreetype6-dev liblcms2-dev libwebp-dev tcl8.5-dev tk8.5-dev python-tk \
python3-dev python3-setuptoolsi
sudo yum groupinstall "Development Tools" "Development Libraries"
sudo yum install libtiff-devel libjpeg-devel libzip-devel freetype-devel \
lcms2-devel libwebp-devel tcl-devel tk-devel
sudo pip install virtualenv
git clone https://github.com/WWUDevOps/website.git
virtualenv website
cd website
Enter the virtual environment.
source bin/activate
Install the requirements.
pip install -r requirements.txt
Output lives in build/
and the stuff you want to edit is in source/
. Images
and things go in source/static/
.
Slides will go to build/slides
.
Built html is stores on the gh-pages branch of this repository to be hosted with GitHub pages, so clone that branch into the build/html
directory with:
~$: mkdir build/
~$: git clone https://github.com/wwudevops/curriculum --branch gh-pages --single-branch build/html
To preview roughly how it'll look on [wwudevops.github.io/curriculum][WWU DevOps Curriculum].
To make html pages
make html
For changes to take effect they have to be committed and pushed upstream (remember the build/html
is a separate branch that we're treating as it's own "repository".
Leave the virtual environment.
deactivate