From 843d0128ee4b1bc8ebb73ba8f2857637485c4e18 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Mon, 29 Feb 2016 18:32:53 +0000 Subject: Add docs.baserock.org, which renders spec.git as HTML and serves it Change-Id: I99ab72ad50d43da58c867b6d3ccd972b8e3e4bab --- baserock_webserver/generate-docs.baserock.org | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 baserock_webserver/generate-docs.baserock.org (limited to 'baserock_webserver/generate-docs.baserock.org') diff --git a/baserock_webserver/generate-docs.baserock.org b/baserock_webserver/generate-docs.baserock.org new file mode 100755 index 00000000..581ab5de --- /dev/null +++ b/baserock_webserver/generate-docs.baserock.org @@ -0,0 +1,36 @@ +#!/bin/sh +# +# Copyright (C) 2016 Codethink Limited +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . + + +# Generator script for docs.baserock.org website. +# +# This can be run as a cron job or Git post-receive hook, to get auto-updating +# documentation built from Git repos. + + +set -e + +cd ~ +if [ ! -d spec.git ]; then + git clone git://git.baserock.org/baserock/baserock/spec.git spec.git + cd spec.git +else + cd spec.git + git checkout master + git pull origin master +fi + +~/.local/bin/mkdocs build -- cgit v1.2.1