mirror of
https://github.com/geoserver/geoserver-cloud.git
synced 2025-12-08 20:16:08 +00:00
Implement the All Contributors initiative in the documentation to recognize contributions of all kinds - not just code. This includes business development, project management, financial support, user testing, and more. - Add .all-contributorsrc configuration file at project root - Create new Community section in documentation - docs/src/community/index.md - Community landing page - docs/src/community/contributors.md - All Contributors page - Update docs/mkdocs.yml navigation to include Community section - Configure htmlproofer to ignore contributors page (has dynamic anchor links) - Add initial contributors with their contribution types How to add contributors: Install the CLI (one-time setup): ``` npm install --save-dev all-contributors-cli npx all-contributors-cli add <github-username> <contribution-types> npx all-contributors-cli add username code,doc,test,bug ```
137 lines
3.8 KiB
YAML
137 lines
3.8 KiB
YAML
site_name: GeoServer Cloud Documentation
|
|
site_description: Cloud Native distribution of GeoServer
|
|
site_author: GeoServer Project
|
|
copyright: "© 2023 Open Source Geospatial Foundation. All rights reserved."
|
|
repo_url: https://github.com/geoserver/geoserver-cloud
|
|
edit_uri: edit/main/docs/src/
|
|
site_url: !ENV [SITE_URL, 'https://geoserver.org/geoserver-cloud']
|
|
docs_dir: src
|
|
|
|
theme:
|
|
name: material
|
|
custom_dir: overrides
|
|
logo: assets/images/geoserver-logo-outline.svg
|
|
favicon: assets/images/favicon.ico
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- navigation.expand
|
|
- navigation.indexes
|
|
- navigation.top
|
|
- toc.integrate
|
|
- search.suggest
|
|
- search.highlight
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
palette:
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
primary: blue
|
|
accent: blue
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
primary: blue
|
|
accent: blue
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
font:
|
|
text: Inter
|
|
code: JetBrains Mono
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
|
|
extra_css:
|
|
- assets/stylesheets/extra.css
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- attr_list
|
|
- def_list
|
|
- footnotes
|
|
- md_in_html
|
|
- toc:
|
|
permalink: true
|
|
title: On this page
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
- pymdownx.betterem:
|
|
smart_enable: all
|
|
- pymdownx.caret
|
|
- pymdownx.details
|
|
- pymdownx.emoji:
|
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.keys
|
|
- pymdownx.mark
|
|
- pymdownx.smartsymbols
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.tilde
|
|
|
|
plugins:
|
|
- search:
|
|
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
|
|
- htmlproofer:
|
|
enabled: !ENV [HTMLPROOFER_ENABLED, true]
|
|
raise_error: true
|
|
raise_error_after_finish: false
|
|
validate_external_urls: false
|
|
validate_rendered_template: true
|
|
ignore_pages:
|
|
- community/contributors.md
|
|
- minify:
|
|
minify_html: true
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Deployment:
|
|
- Overview: deploy/index.md
|
|
- Docker Compose: deploy/docker-compose/index.md
|
|
- Helm Charts: deploy/helm/index.md
|
|
- Configuration:
|
|
- Externalized configuration guide: configuration/index.md
|
|
- Migration 2.26 to 2.27: configuration/migration-2.26-to-2.27.md
|
|
- Community:
|
|
- Overview: community/index.md
|
|
- Contributors: community/contributors.md
|
|
- Developer Guide:
|
|
- Overview: developer-guide/index.md
|
|
- Building: developer-guide/build_instructions.md
|
|
- Contributing: developer-guide/coding_standards.md
|
|
- Services:
|
|
- Discovery Service: developer-guide/services/discovery-service.md
|
|
- Gateway Service: developer-guide/services/gateway-service.md
|
|
- REST Config Service: developer-guide/services/restconfig-v1-service.md
|
|
- Event Bus: developer-guide/event-bus/index.md
|
|
- Extensions: developer-guide/extensions/adding_extensions.md
|
|
|
|
|
|
extra:
|
|
banner_message: !ENV [BANNER_MESSAGE, '']
|
|
analytics:
|
|
provider: google
|
|
property: G-YRM5CB206D
|
|
version:
|
|
provider: mike
|
|
social:
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/geoserver/geoserver-cloud
|
|
- icon: fontawesome/solid/globe
|
|
link: https://geoserver/geoserver-cloud
|