From 1a6cc0b53a87f771712cfe67aae5ca1388df08dc Mon Sep 17 00:00:00 2001 From: Neil Hanlon Date: Fri, 31 Mar 2023 10:50:08 -0400 Subject: [PATCH] SIG/AI init --- LICENSE | 9 ++++++ README.md | 3 ++ docs/CNAME | 1 + docs/index.md | 16 +++++++++++ mkdocs.yml | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ requirements.txt | 7 +++++ 6 files changed, 111 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 docs/CNAME create mode 100644 docs/index.md create mode 100644 mkdocs.yml create mode 100644 requirements.txt diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2071b23 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..eabdafa --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# SIG/AI Wiki + +@TODO - fill in :) diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..9d90264 --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +sig-ai.rocky.page diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..95575c1 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,16 @@ +# Rocky Linux SIG/AI Wiki + +## Links + +## Responsibilities + +## Meetings / Communications + +## Members + +## 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..14110b6 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,75 @@ +--- +# Project information +site_name: SIG/AI Wiki +site_url: https://sig-ai.rocky.page +site_description: >- + The wiki for the AI Special Interest Group of the Rocky Linux project + +# Repository +repo_url: https://git.resf.org/sig_ai/wiki +repo_name: sig_ai/wiki +edit_uri: edit/main/docs/ + +# Copyright +copyright: Copyright © 2023 Rocky Enterprise Software Foundation + +# Configuration +theme: + name: material + palette: + - media: "(prefers-color-scheme: light)" + scheme: default + primary: teal + accent: teal + toggle: + icon: material/weather-night + name: Switch to dark mode + - media: "(prefers-color-scheme: dark)" + scheme: slate + primary: teal + accent: teal + toggle: + icon: material/weather-sunny + name: Switch to light mode + highlightjs: true + hljs_languages: + - bash + - perl + - python + - yaml + features: + - navigation.expand + - navigation.indexes + - navigation.instant + - navigation.tabs + - navigation.top + - navigation.tracking + - search.highlight + - search.suggest + - toc.integrate + logo: assets/icon-white.svg + +# Plugins +plugins: + - autolinks + - awesome-pages + - git-revision-date + - search + +# Extensions +markdown_extensions: + - abbr + - admonition + - attr_list + - def_list + - footnotes + - meta + - pymdownx.details # this allows collapsible attributions + - pymdownx.emoji: + emoji_index: !!python/name:materialx.emoji.twemoji + emoji_generator: !!python/name:materialx.emoji.to_svg + - pymdownx.superfences + - pymdownx.tabbed: + alternate_style: true + - toc: + permalink: true diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d02c34b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +mkdocs +mkdocs-autolinks-plugin +mkdocs-awesome-pages-plugin +mkdocs-git-revision-date-plugin +mkdocs-macros-plugin +mkdocs-material +mkdocs-windmill