From 3f0b2e0f827e7915c97d4259dfa115fac2de6239 Mon Sep 17 00:00:00 2001
From: Danny McDonald <mcddjx@gmail.com>
Date: Tue, 19 May 2020 13:25:02 +0200
Subject: [PATCH] test readthedocs

---
 .readthedocs.yaml     | 23 +++++++++++++++++++++++
 docs/index.md         |  3 +++
 docs/requirements.txt |  1 +
 mkdocs.yml            |  7 +++++++
 4 files changed, 34 insertions(+)
 create mode 100644 .readthedocs.yaml
 create mode 100644 docs/index.md
 create mode 100644 docs/requirements.txt
 create mode 100644 mkdocs.yml

diff --git a/.readthedocs.yaml b/.readthedocs.yaml
new file mode 100644
index 0000000..652697e
--- /dev/null
+++ b/.readthedocs.yaml
@@ -0,0 +1,23 @@
+# Read the Docs configuration file
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
+
+# Required
+version: 2
+
+# Build documentation in the docs/ directory with Sphinx
+#sphinx:
+#  configuration: docs/conf.py
+
+# Build documentation with MkDocs
+mkdocs:
+  configuration: mkdocs.yml
+  fail_on_warning: false
+
+# Optionally build your docs in additional formats such as PDF and ePub
+formats: all
+
+# Optionally set the version of Python and requirements required to build your docs
+python:
+  version: 3.7
+  install:
+    - requirements: docs/requirements.txt
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 0000000..e429fb7
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,3 @@
+# This is a test site
+
+> Testing UZH GitLab / readthedocs webhoook
diff --git a/docs/requirements.txt b/docs/requirements.txt
new file mode 100644
index 0000000..016bb16
--- /dev/null
+++ b/docs/requirements.txt
@@ -0,0 +1 @@
+mkdocs
diff --git a/mkdocs.yml b/mkdocs.yml
new file mode 100644
index 0000000..1273a0d
--- /dev/null
+++ b/mkdocs.yml
@@ -0,0 +1,7 @@
+site_name: "Testing ground"
+
+theme:
+  name: 'readthedocs'
+
+nav:
+    - Home: index.md
-- 
GitLab