Combine scouting webserver and scouting web pages

This patch adds a new `//scouting` target that runs the webserver and
points it at our web pages. This will be the target that folks can use
to run the entire scouting application.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I62acfb271b856f9d238b17ecc3573f31a07bab41
diff --git a/scouting/scouting.sh b/scouting/scouting.sh
new file mode 100755
index 0000000..669cf22
--- /dev/null
+++ b/scouting/scouting.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+# This script runs the webserver and asks it to host all the web pages.
+
+exec \
+    scouting/webserver/webserver_/webserver \
+    -directory scouting/www/ \
+    "$@"