tripleo-ci/scripts/website
Dan Prince 201918df96 Fix website style per openstackdocstheme changes
This updates the website style so that we swap in the correct
tripleosphinx theme instead of the new openstackdocstheme.

Change-Id: I5b8fdf21bc89a4f141b207d38568386814c28252
2017-07-10 13:11:46 -04:00
..
README.md Add scripts to generate tripleo.org website 2016-04-01 08:42:55 -04:00
generate_site.sh Fix website style per openstackdocstheme changes 2017-07-10 13:11:46 -04:00
planet.config.ini Use a more specific feed for my blog 2017-01-13 09:22:27 +00:00
planet.html.tmpl Add planet blog aggregator feeds to website 2016-05-09 16:00:11 -04:00
tripleo-reviewday.yaml Remove os-cloud-config 2017-03-28 18:09:59 -04:00

README.md

tripleo.org

Description

This directory contains scripts and config files used to generate the tripleo.org website.

The following projects are used:

  • tripleo-docs (our tripleo documentation)
  • tripleosphinx (currently hosted on https://github.com/dprince/tripleosphinx.git)
  • reviewday (provides an HTML report of reviews along with LP ticket priorities)
  • tripleo-ci (HTML CI reports and other misc scripts.)

Building the site

Tripleo.org is currently a static HTML website that is regenerated by scripts or via a cron job.

To build the entire site run the following:

cd tripleo-ci/scripts/website OUT_HTML='out_html' bash generate_site.sh

NOTE: This will take some time to run reviewday (which makes remote Gerrit and Lauchpad API connections) and generate the CI reports which contact the API of the upstream Jenkins servers.

If you want to do a quick build to test out new HTML formatting, etc. you can disable the reviewday and CI reports by running the following:

cd tripleo-ci/scripts/website SKIP_REVIEWDAY="Y" SKIP_CI_REPORTS="Y" OUT_HTML='out_html' bash generate_site.sh

Once you executed either of the above commands the HTML website would be in your local out_html directory and can be viewed with any webrower by pointing it to the local filesystem.