mirror of
https://git.resf.org/sig_core/wiki.git
synced 2024-11-15 20:21:22 +00:00
Initial commit
This commit is contained in:
commit
bcc646f6f1
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
site/
|
26
.gitlab-ci.yml
Normal file
26
.gitlab-ci.yml
Normal file
@ -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
|
||||
...
|
4
docs/.pages
Normal file
4
docs/.pages
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
nav:
|
||||
- ... | index.md
|
||||
...
|
23
docs/index.md
Normal file
23
docs/index.md
Normal file
@ -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 |
|
27
mkdocs.yml
Normal file
27
mkdocs.yml
Normal file
@ -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
|
||||
...
|
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
||||
mkdocs
|
||||
mkdocs-cinder
|
Loading…
Reference in New Issue
Block a user