diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000000000000000000000000000000000..652697e322250648bcd6735bad95bd9cd040bcc1 --- /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 0000000000000000000000000000000000000000..e429fb7c64a1b23129510031be01dde55232becc --- /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 0000000000000000000000000000000000000000..016bb16df3359f784794884af4c5f2bb9619ed34 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +mkdocs diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000000000000000000000000000000000000..1273a0d9179d9102c442062e6f0b177068ac16de --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,7 @@ +site_name: "Testing ground" + +theme: + name: 'readthedocs' + +nav: + - Home: index.md