gitpagedocs
v1.1.41
Published
CLI that generates initial gitpagedocs configuration files (config-only) without index scaffold.
Downloads
3,516
Maintainers
Readme
Git Page Docs
gitpagedocs is a CLI and runtime contract for repository documentation.
It generates and maintains a gitpagedocs/ folder with config and versioned markdown files.
It does not generate index.html or index.js.
Table of Contents
- Prerequisites
- Quick Start
- Layout Strategy
- Use Official Site or Your Own GitHub Pages
- Self-Hosted GitHub Pages Setup
- Generated Structure
- Configuration Keys
- Repository Search Behavior
- Scripts
- URL Routes and Query Parameters
- Authorized Routes
- CLI Options
- Configuration File Format
- License
Prerequisites
- Node.js 18+ (recommended 20+)
- npm 9+
Quick Start
Install in your project:
npm install gitpagedocsGenerate docs config and versioned files (recommended default):
npx gitpagedocsGenerate docs plus local layout templates:
npx gitpagedocs --layoutconfigGenerate docs, configure GitHub Pages URL, create workflow, and push:
npx gitpagedocs --push --owner your-user --repo your-repositoryDocs deploy at the repository root, e.g. https://your-user.github.io/your-repository/v/1.0.0/?lang=en.
Optional --path to serve docs in a subpath (e.g. docs or git-page-docs):
npx gitpagedocs --push --owner your-user --repo your-repository --path docsThen docs are at https://your-user.github.io/your-repository/docs/v/1.0.0/?lang=en.
Shortcut syntax also supported:
npx gitpagedocs --push --your-user --your-repositoryStandalone home distribution (npx gitpagedocs --home)
Generates a self-contained gitpagedocshome/ folder with:
- Static export of the docs (ready for
npx serve .) - Pre-configured
.env Dockerfilefor container deploymentREADME.mdwith usage instructions
npx gitpagedocs --home
cd gitpagedocshome
npx serve .Or with Docker:
cd gitpagedocshome
docker build -t gitpagedocshome .
docker run -p 3000:80 gitpagedocshomeLayout Strategy
gitpagedocs supports two layout strategies:
1) Default mode (npx gitpagedocs)
gitpagedocs/config.json(orconfig.js/config.ts) is generated with official layout source enabled.- Layouts/templates are loaded from the official repository URLs:
https://github.com/Vidigal-code/git-page-docs/tree/main/gitpagedocs/layouts
- Best option if you want to focus only on writing docs.
2) Local layout mode (npx gitpagedocs --layoutconfig)
- Generates local files in
gitpagedocs/layouts/**:layoutsConfig.jsonlayoutsFallbackConfig.jsontemplates/*.json
- Official layout URLs are disabled in generated config.
- Best option if you want to create and maintain your own templates in your own repository.
Fallback behavior
- Runtime keeps resilient fallback behavior if a layout/template source is unavailable.
- In local layout mode, the runtime prioritizes local repository layout sources and does not force official template URLs by default.
Use Official Site or Your Own GitHub Pages
You can choose either:
- Official viewer site
https://vidigal-code.github.io/git-page-docs/ - Self-hosted viewer in your own GitHub repository using GitHub Pages.
This means your docs can run independently from the official domain when you publish your own site.
Self-Hosted GitHub Pages Setup
1) Prepare your repository
npm install
npx gitpagedocsOr, if you want local templates:
npx gitpagedocs --layoutconfig2) Configure runtime URL (site.rendering)
Set gitpagedocs/config.json (or config.js / config.ts) site.rendering to your GitHub Pages URL:
https://<your-user>.github.io/<your-repository>/Example:
https://octocat.github.io/my-docs/3) Build and validate locally
npm run lint
npm run build
npm start4) Publish with GitHub Pages
- Push your repository to GitHub.
- Enable Pages for your repository (Settings -> Pages).
- Use the repository workflow to build/deploy static output.
- Optional one-command bootstrap:
npx gitpagedocs --push --owner your-user --repo your-repository— docs athttps://<owner>.github.io/<repo>/<repo>/v/<version>/?lang=en(e.g.https://vidigal-code.github.io/energy-bill-ai-parser/energy-bill-ai-parser/v/1.0.0/?lang=en); root redirects there; base path uses repo name so CSS/JS load correctlynpx gitpagedocs --push --owner your-user --repo your-repository --path docs— docs athttps://<owner>.github.io/<repo>/docs/v/<version>/- This creates
.github/workflows/gitpagedocs-pages.yml, setssite.rendering, commits generated artifacts, and pushes toorigin. - The generated workflow clones the official
git-page-docsruntime in CI, injects yourgitpagedocs/folder, builds, and deploys to your GitHub Pages URL. - The workflow trigger uses your current git branch automatically.
- After push, CLI also attempts to switch repository Pages source to GitHub Actions using
gh api(if GitHub CLI is available and authenticated).
When built with GITHUB_ACTIONS=true, the runtime enables GitHub Pages behavior.
Generated Structure
Default mode:
gitpagedocs/
config.json
icon.svg
docs/
versions/
1.0.0/config.json
1.0.0/{en,pt,es}/*.md
1.0.0/{en,pt,es}/source-viewer # Source code viewer (GitHub-style)
1.1.0/...
1.1.1/...Local layout mode adds:
gitpagedocs/layouts/
layoutsConfig.json
layoutsFallbackConfig.json
templates/*.jsonConfiguration Keys (Layout Source)
Main layout source keys in gitpagedocs/config.json (or config.js / config.ts):
layoutsConfigPathOficiallayoutsConfigPathOficialUrllayoutsConfigPathTemplatesOficiallayoutsConfigPathlayoutsConfigPathTemplates
Behavior:
- If
layoutsConfigPathOficial=true, runtime prefers official layout/template sources. - If
layoutsConfigPathOficial=false, runtime prefers your repository layout/template sources (gitpagedocs/layouts/**or your custom paths).
Repository Search Behavior
Repository search is controlled by environment/runtime context:
- GitHub Pages builds (
GITHUB_ACTIONS=true): repository-search home enabled. - Local runtime: controlled by
GITPAGEDOCS_REPOSITORY_SEARCH=true|false.
Recommended for local testing:
GITPAGEDOCS_REPOSITORY_SEARCH=trueScripts
npm run gitpagedocs— runsnode cli/index.mjs(generate config and docs)npm run gitpagedocs:full— compatibility alias for the same CLInpm run gitpagedocs:home— generatesgitpagedocshome/(static site + .env + Dockerfile + README)npm run build— generategitpagedocs/+ copy icon topublic/+next buildnpm run build:prebuilt— generate + build + copyout/toprebuilt/npm run dev—next devnpm run start—node cli/start.mjs(spawnsnext start; runs afterprestartbuild)npm run lint—eslint .npm run clean— remove.next/
URL Routes and Query Parameters
All routes for accessing documentation files on the official site or self-hosted GitHub Pages.
Path structure
| Pattern | Description |
|--------|-------------|
| / | Repository search home (when repositorySearchHome=true) |
| /{owner}/{repo}/ | Docs for owner/repo, default version |
| /{owner}/{repo}/v/{version}/ | Docs for owner/repo, specific version |
| /v/{version}/ | Docs for the project’s own repo, specific version |
Base URL (official site): https://vidigal-code.github.io/git-page-docs/
Query parameters
| Parameter | Values | Description |
|-----------|--------|-------------|
| lang | en, pt, es | UI and content language |
| theme | layout id (e.g. aurora-dark, aurora-light) | Active theme; always reflected in URL |
| modetheme | dark, light | Theme mode (legacy; theme takes precedence) |
| version | e.g. 1.0.0 | Version (alternative to path) |
| menu | en, pt, es | Language for path resolution (use with id or name) |
| id | route id (e.g. 1, 2) | Navigate to page by route id |
| name | slug (e.g. getting-started) | Navigate to page by filename slug |
| mdfull | en, pt, es | Markdown fullscreen mode |
| htmlfull | en, pt, es | HTML fullscreen mode |
| file | path (with mdfull or htmlfull) | File to show in fullscreen |
| videofull | en, pt, es | Video fullscreen mode |
| audiofull | en, pt, es | Audio fullscreen mode |
| slug | video/audio slug (with videofull or audiofull) | Video/audio identifier |
| #heading-id | anchor | Scroll to heading in markdown |
Example URLs (git-page-docs, English)
Markdown pages
- Getting Started (v1.0.0, aurora-dark theme):
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&theme=aurora-dark&menu=en&id=1 - Project overview:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&id=2 - GitHub issues and projects:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&id=3 - Introduction to Git:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&id=4
By slug (name)
- Getting Started:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&name=getting-started - Project overview:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&name=project-overview
HTML pages (by slug)
- Source code viewer:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&name=source-viewer
Video pages (route id 1–4; pages combine MD + HTML + Video by id)
- Video 1:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?lang=en&menu=en&id=1
Fullscreen modes
- Markdown fullscreen:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?mdfull=en&file=gitpagedocs/docs/versions/1.0.0/en/getting-started.md - HTML fullscreen:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?htmlfull=en&file=gitpagedocs/docs/versions/1.0.0/en/source-viewer - Video fullscreen:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?videofull=en&id=1
Theme selection
- aurora-dark (default dark):
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?theme=aurora-dark - aurora-light:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.0.0/?theme=aurora-light
Other versions
- v1.1.0:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.1.0/?lang=en&theme=aurora-dark - v1.1.1:
https://vidigal-code.github.io/git-page-docs/Vidigal-code/git-page-docs/v/1.1.1/?lang=en&theme=aurora-dark
Authorized Routes
Route authorization is configured per version in:
gitpagedocs/docs/versions/<version>/config.json
Use the top-level auth section plus route-level authorization:
auth.accessKeys: key ids and expected secretsauth.rolesStorageKey: localStorage key used to bootstrap rolesauth.providers: external providers (authjs,clerk,firebase,jwt)authorization.accessKeyId: requires a configured keyauthorization.requiredRoles: requires matching rolesauthorization.requireExternalAuth: requires authenticated external providerauthorization.allowedProviders: optional provider allow-list per route
Example:
{
"auth": {
"accessKeys": {
"docs-key": "open-gitpagedocs-docs"
},
"providers": [
{ "type": "authjs", "enabled": true, "sessionEndpoint": "/api/auth/session" },
{ "type": "jwt", "enabled": true, "tokenStorageKey": "git-page-docs:jwt-token" }
]
},
"routes-md": [
{
"id": 6,
"path": {
"en": "gitpagedocs/docs/versions/1.1.1/en/authorized-routes.md",
"pt": "gitpagedocs/docs/versions/1.1.1/pt/authorized-routes.md",
"es": "gitpagedocs/docs/versions/1.1.1/es/authorized-routes.md"
},
"authorization": {
"accessKeyId": "docs-key",
"requiredRoles": ["maintainer"],
"requireExternalAuth": true,
"allowedProviders": ["authjs", "jwt"]
}
}
]
}CLI Options
| Option | Description |
|--------|-------------|
| --owner <user> | GitHub owner (e.g. Vidigal-code) |
| --repo <repo> | GitHub repository (e.g. git-page-docs) |
| --path <subpath> | Subpath for docs (e.g. docs); without it, base path = repo name for correct asset loading on project sites |
| --output <dir> | Output directory (default: gitpagedocs or gitpagedocshome with --home) |
| --search true\|false | Enable/disable repository search (mainly for --home) |
| --layoutconfig | Generate local layout templates in gitpagedocs/layouts/ |
| --push | Create workflow, commit artifacts, push to origin |
| --home | Standalone distribution in gitpagedocshome/ (static site + .env + Dockerfile + README) |
| --interactive / -i | Run in interactive mode (prompts for options) |
| --build | Compatibility flag (no change to output) |
| --serve | Compatibility flag |
| --full | Compatibility flag |
Shortcut syntax: npx gitpagedocs --push --<owner> --<repo> (e.g. --Vidigal-code --git-page-docs) is equivalent to --owner <owner> --repo <repo>.
With --home, output is gitpagedocshome/ (or --output value). Otherwise, output remains gitpagedocs/ (or --output value).
Configuration File Format
Runtime supports three config file formats (in order of precedence):
gitpagedocs/config.jsongitpagedocs/config.js(CommonJSmodule.exportsor ESMexport default)gitpagedocs/config.ts(TypeScript; exports default object)
License
ISC. See repository for details.
