commit fd4a4f97c10974d0541234b6b087d6e874a55bb9 Author: SIG/Desktop <> Date: Fri Aug 16 03:05:44 2024 +0000 Initial commit diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..a7adb0d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,41 @@ +--- +name: mkdocs build +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + container: + image: docker.io/rockylinux:9 + steps: + - name: Install deps + run: dnf -y upgrade && dnf -y install git python3 python3-pip cairo-devel + + - name: setup ssh + env: + SSH_KEY: "${{ secrets.SSH_KEY }}" + run: | + mkdir -p ~/.ssh/ + echo "$SSH_KEY" > ~/.ssh/id_rsa + chmod 0700 ~/.ssh/ + chmod 0600 ~/.ssh/id_rsa + + - name: checkout + env: + GIT_SSH_COMMAND: "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" + run: + git clone https://git.resf.org/$GITHUB_REPOSITORY.git $GITHUB_WORKSPACE + + - name: Install python requirements + run: python3 -m pip install -r requirements.txt + + - name: Deploy + env: + GIT_SSH_COMMAND: "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" + GIT_AUTHOR_NAME: "Rocky Bot" + GIT_AUTHOR_EMAIL: "auto@rockylinux.org" + run: | + git remote set-url origin ssh://git@git.resf.org:22220/$GITHUB_REPOSITORY.git + python3 -m mkdocs gh-deploy --force diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b44ca6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +site/ +.cache/ diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..2c37103 --- /dev/null +++ b/Containerfile @@ -0,0 +1,8 @@ +FROM quay.io/rockylinux/rockylinux:9 + +RUN dnf -y upgrade +RUN dnf install -y git python3 python3-pip cairo-devel + +COPY . /wiki +WORKDIR /wiki +RUN pip install -r 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..ebbf5f5 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# REPLACEME Wiki + +@TODO - fill in :) + +## Continuous Integration / Continuous Deployment + +Actions Runner executes workflow to publish to https://REPLACEME.rocky.page on push to main. + +## Building Locally + +In order to build this wiki locally, a docker-compose configuration and container file are supplied which when invoked, will launch mkdocs' development server in a container bound to port 8000 and will live-reload when changes are made to the wiki files. + +To run the containers on your system, invoke podman or docker compose like so: + +``` +podman-compose -f docker-compose.yml up -d +``` + +The container will build and then launch itself. Afterwards, you should be able to view the wiki content at http://localhost:8000. + +The compose file accepts a build argument if you need to run it on a different port. For example, to bind to port 8080 on your local machine: + +``` +podman-compose -f docker-compose --build-arg PORT=8080 up -d +``` + +## Project layout + + mkdocs.yml # The configuration file. + README.md # This file. + docs/ + index.md # The documentation homepage. + ... # Other markdown pages, images and other files. diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..4578c22 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +--- +version: '3' + +services: + wiki: + build: + context: . + dockerfile: Containerfile + command: ["mkdocs", "serve", "-w", "/wiki", "--dev-addr", "0.0.0.0:${PORT:-8000}"] + volumes: + - .:/wiki:z,rw + ports: + - "${PORT:-8000}:8000" diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..f3adce1 --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +REPLACEME.rocky.page diff --git a/docs/assets/extra.css b/docs/assets/extra.css new file mode 100644 index 0000000..e038505 --- /dev/null +++ b/docs/assets/extra.css @@ -0,0 +1,33 @@ +:root { + @media screen and (max-width: 76.234375em) { + .md-nav__title[for="__drawer"] { + background: linear-gradient(135deg, #10b981 0%, #1055b9 100%); + } + } +} + +[data-md-color-scheme="resf"] { + --md-accent-fg-color: #0e7391; + --md-primary-fg-color--dark: #107fa1; + --md-primary-fg-color--light: #FFFFFF; + --md-primary-fg-color: #107fa1; + --md-typeset-a-color: #107fa1; +} +[data-md-color-scheme="resf-dark"] { + color-scheme: dark; + --md-default-fg-color: #FFFFFF; + --md-default-bg-color: rgb(30, 33, 41); + + --md-primary-fg-color: #107fa1; + --md-primary-bg-color: #FFFFFF; + --md-primary-fg-color--dark: #107fa1; + + --md-accent-fg-color: #0e7391; + + --md-default-fg-color--light: rgba(226, 228, 233, 0.56); + + --md-typeset-table-color: rgba(240, 241, 244, 0.12); + + --md-typeset-color: rgba(226, 228, 233, 0.82); + --md-typeset-a-color: #107fa1; +} diff --git a/docs/assets/icon-white.svg b/docs/assets/icon-white.svg new file mode 100644 index 0000000..689ab46 --- /dev/null +++ b/docs/assets/icon-white.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/assets/resf-icon-w-bg.png b/docs/assets/resf-icon-w-bg.png new file mode 100644 index 0000000..6fd6b7c Binary files /dev/null and b/docs/assets/resf-icon-w-bg.png differ diff --git a/docs/assets/resf-icon.png b/docs/assets/resf-icon.png new file mode 100644 index 0000000..f15f2d9 Binary files /dev/null and b/docs/assets/resf-icon.png differ diff --git a/docs/assets/resf-white.svg b/docs/assets/resf-white.svg new file mode 100644 index 0000000..5aef3af --- /dev/null +++ b/docs/assets/resf-white.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..cb82ac7 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,10 @@ +# REPLACEME Wiki + +## Links + +## Responsibilities + +## Meetings / Communications + +## Members + diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..9a78be3 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,78 @@ +--- +# Project information +site_name: REPLACEME Wiki +site_url: https://REPLACEME.rocky.page +site_description: >- + REPLACEME + +# Repository +repo_url: https://git.resf.org/REPLACEME/wiki +repo_name: REPLACEME/wiki +edit_uri: _edit/main/docs/ + +# Copyright +copyright: Copyright © 2024 Rocky Enterprise Software Foundation + +extra_css: + - assets/extra.css + +# Configuration +theme: + name: material + logo: assets/resf-white.svg + palette: + - media: "(prefers-color-scheme: light)" + scheme: resf + toggle: + icon: material/weather-night + name: Switch to dark mode + - media: "(prefers-color-scheme: dark)" + scheme: resf-dark + 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.sections + - navigation.top + - navigation.tracking + - navigation.path + - search.highlight + - search.suggest + - toc.integrate + - content.action.edit + +# Plugins +plugins: + - autolinks + - social + - awesome-pages + - git-revision-date-localized: + type: 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:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.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..faf266f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +mkdocs +mkdocs-autolinks-plugin +mkdocs-awesome-pages-plugin +mkdocs-git-revision-date-localized-plugin +mkdocs-macros-plugin +mkdocs-material +mkdocs-windmill +mkdocs-material[imaging]