commit bcc646f6f102238118ed132afda640124c6ffaaa Author: nazunalika Date: Sun Dec 12 23:40:53 2021 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45ddf0a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +site/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..efd576e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +--- +before_script: + - dnf install python36 + - pip3 install -r requirements.txt + +test: + image: rockylinux:latest + stage: test + script: + - mkdocs build --script --verbose --site-dir test + artifacts: + paths: + - test + except: + - main + +pages: + stage: deploy + script: + - mkdocs build --verbose + artifacts: + paths: + - public + only: + - main +... diff --git a/docs/.pages b/docs/.pages new file mode 100644 index 0000000..06765ee --- /dev/null +++ b/docs/.pages @@ -0,0 +1,4 @@ +--- +nav: + - ... | index.md +... diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..4d649d5 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,23 @@ +--- +title: SIG/Core +--- + +# SIG/Core Wiki + +## About + +Rocky Linux Center for Technical Excellence + +## Mission Statement + +## Contact + +| Role | Name | Email | Mattermost Name | IRC Name | +|------------------------------------: |------------------------------- |--------------------- |--- | --- | +| Identity Management & Release Engineering Co-Lead | Louis Abel | label@rockylinux.org | @nazunalika | Sokel/label/Sombra | +| Release Engineering Co-Lead | Mustafa Gezen | mustafa@rockylinux.org | @mustafa | mstg | +| Release Engineering and Development | Skip Grube | skip@rockylinux.org | @skip77 | | +| Release Engineering and Development | Sherif Nagy | sherif@rockylinux.org | @sherif | | +| Release Engineering and Development | Pablo Greco | N/A | @pgreco | pgreco | +| Infrastructure | Neil Hanlon | neil@resf.org | @neil | neil | +| Infrastructure | Taylor Goodwill | tg@resf.org | @tgo | tg | diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..a640030 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,27 @@ +--- +site_name: SIG/Core Wiki +site_url: https://core.sig.rockylinux.io +theme: + name: windmill + highlightjs: true + hljs_languages: + - bash + - python + - yaml + - perl + features: + - navigation.tabs + - navigation.tabs.sticky + - navigation.top + - search.suggest +markdown_extensions: + - abbr + - attr_list + - admonition + - toc: + permalink: true + - footnotes + - def_list + - meta +copyright: Copyright © 2021 Rocky Enterprise Software Foundation +... diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7c00360 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +mkdocs +mkdocs-cinder