From 1a8331936f0c0ab13ddc4066f82d5d55a9909e05 Mon Sep 17 00:00:00 2001 From: Late Night Defender Date: Fri, 21 Jun 2024 14:32:38 +0700 Subject: [PATCH] first commit --- docs/examples.md | 0 docs/examples/nginx.md | 0 docs/index.md | 17 +++++++++++++++++ mkdocs.yml | 16 ++++++++++++++++ 4 files changed, 33 insertions(+) create mode 100644 docs/examples.md create mode 100644 docs/examples/nginx.md create mode 100644 docs/index.md create mode 100644 mkdocs.yml diff --git a/docs/examples.md b/docs/examples.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/examples/nginx.md b/docs/examples/nginx.md new file mode 100644 index 0000000..e69de29 diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..000ea34 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,17 @@ +# Welcome to MkDocs + +For full documentation visit [mkdocs.org](https://www.mkdocs.org). + +## Commands + +* `mkdocs new [dir-name]` - Create a new project. +* `mkdocs serve` - Start the live-reloading docs server. +* `mkdocs build` - Build the documentation site. +* `mkdocs -h` - Print help message and exit. + +## Project layout + + mkdocs.yml # The configuration file. + docs/ + index.md # The documentation homepage. + ... # Other markdown pages, images and other files. diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..94a2508 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,16 @@ +site_name: TechTransThai Quadlet Examples +site_url: https://awesome-quadlets.techtransthai.org +repo_url: https://forge.techtransthai.org/techtransthai/quadlet-examples.techtransthai.org +edit_uri: 'src/branch/main/docs/' + +site_description: +site_author: TechTransThai Community + +theme: + name: readthedocs + +nav: + - Introduction: index.md + - Examples: examples.md + - 'Deploying services with Quadlet': + - 'Nginx': examples/nginx.md