-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_config.yml
More file actions
72 lines (63 loc) · 2.08 KB
/
Copy path_config.yml
File metadata and controls
72 lines (63 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Jekyll config for the MCPg GitHub Pages site.
# Site URL: https://devopam.github.io/MCPg/
#
# GitHub Pages serves from `main` branch / root. README.md becomes
# the homepage; everything under docs/ is rendered into the published
# site automatically.
title: MCPg
description: A production-grade PostgreSQL Model Context Protocol (MCP) server.
url: https://devopam.github.io
baseurl: /MCPg
# Cayman is GitHub's default project-page theme — clean, mobile-friendly,
# minimal chrome around the prose. Used by countless Python project sites.
theme: jekyll-theme-cayman
# Tells the cayman theme where the "View on GitHub" button should point.
repository: devopam/MCPg
# Hide cayman's default "Download .zip / .tar.gz" buttons — for a
# packaged project, the install path is `pip install mcpg`, not a
# tarball download.
show_downloads: false
# Plugins listed here are part of the GitHub Pages allowlist
# (see https://pages.github.com/versions/). No Gemfile needed.
plugins:
# Rewrites `[text](docs/x.md)`-style links so they resolve on the
# published site without us having to edit the source markdown. Key:
# the same links still work on the GitHub repo view.
- jekyll-relative-links
# Lets README.md / docs/*.md be served without YAML front matter.
- jekyll-optional-front-matter
# Adds <title>, meta description, og:tags from `title` / `description`
# above and from each page's first H1.
- jekyll-seo-tag
# Generates /sitemap.xml automatically.
- jekyll-sitemap
relative_links:
enabled: true
collections: true
optional_front_matter:
remove_originals: true
# Keep the published site lean — code, tests, build artefacts, and
# IDE/CI cruft don't belong on the documentation surface.
exclude:
- .github/
- packaging/
- .gitignore
- .pre-commit-config.yaml
- .ruff_cache/
- .pytest_cache/
- .mypy_cache/
- .venv/
- Dockerfile
- LICENSE
- NOTICE
- PLAN.md
- benchmarks/
- dist/
- pyproject.toml
- scratch/
- src/
- tests/
- uv.lock
- vendor/
# Pretty URLs (so /MCPg/docs/installation/ rather than /MCPg/docs/installation.html).
permalink: pretty