🇯🇵 日本語版はこちら
This repository hosts the official documentation for GeonicDB, a serverless FIWARE Orion-compatible Context Broker. The documentation site is built with VitePress and provides comprehensive guides, API references, and integration examples.
GeonicDB is a next-generation Context Broker that brings FIWARE standards to the serverless world:
- AI-Native: Built-in MCP server, llms.txt, tools.json, and OpenAPI 3.0 for seamless AI agent integration
- Serverless: Runs on AWS Lambda with auto-scaling and pay-per-use pricing
- Dual API Support: Both NGSIv2 and NGSI-LD on a single instance
- Japan Standards Ready: CADDE compatible with provenance tracking
🌐 Live Documentation: https://docs.geonicdb.org/
- VitePress 1.6.x - Static site generator for documentation
- TypeScript - Type-safe development
- i18n - English and Japanese language support
- yuuhitsu - AI-powered translation CLI
- Node.js 20.x or higher
- pnpm 10.29.2 or higher
# Clone the repository
git clone https://github.com/geolonia/geonicdb-docs.git
cd geonicdb-docs
# Install dependencies
pnpm installStart the development server:
pnpm docs:devThe site will be available at http://localhost:5173
Build the static site for production:
pnpm docs:buildPreview the production build:
pnpm docs:previewRun unit tests with Vitest:
pnpm test # Run all unit tests
pnpm test:unit # Run unit tests onlyRun end-to-end tests with Playwright:
pnpm test:e2e # Run E2E testsRun all tests (unit + E2E):
pnpm test:allThe documentation is available in both English and Japanese. The yuuhitsu AI-powered translation CLI is integrated as a dev dependency for maintaining translation consistency.
To translate documents:
# Set up your API key in .env
ANTHROPIC_API_KEY=your_api_key_here
# Translate a specific English file to Japanese
pnpm translate:ja -- docs/en/path/to/file.md
# Translate a specific Japanese file to English
pnpm translate:en -- docs/ja/path/to/file.mddocs/
├── en/ # English documentation
│ ├── introduction/ # Getting started guides
│ ├── core-concepts/ # Core concepts
│ ├── features/ # Feature guides
│ ├── api-reference/ # API documentation
│ ├── ai-integration/ # AI integration guides
│ ├── security/ # Security & authentication
│ ├── japan-standards/ # Japan standards (CADDE, etc.)
│ ├── migration/ # Migration guides
│ └── index.md # English homepage
├── ja/ # Japanese documentation
│ └── (same structure as en/)
└── .vitepress/
├── config/ # VitePress configuration
└── theme/ # Custom theme
We welcome contributions! Please follow these guidelines:
-
Create a branch for your changes:
git checkout -b feat/your-feature
-
Never push directly to main - Always create a pull request
-
Run tests before submitting:
pnpm test:all
-
CodeRabbit review - Address all Actionable or higher issues from CodeRabbit
-
Submit a PR with a clear description of your changes
- All PRs must pass CI checks (unit tests + E2E tests)
- CodeRabbit will automatically review your PR
- At least one maintainer approval is required for merge
| Command | Description |
|---|---|
pnpm docs:dev |
Start development server |
pnpm docs:build |
Build for production |
pnpm docs:preview |
Preview production build |
pnpm test |
Run unit tests |
pnpm test:unit |
Run unit tests only |
pnpm test:e2e |
Run E2E tests |
pnpm test:all |
Run all tests |
pnpm sync-docs |
Sync documentation from external sources |
pnpm check-links |
Check for broken links |
pnpm translate |
Translate markdown files |
pnpm translate:ja |
Translate English docs to Japanese |
pnpm translate:en |
Translate Japanese docs to English |
- GeonicDB Repository: https://github.com/geolonia/geonicdb
- FIWARE Orion: https://fiware-orion.readthedocs.io/
- NGSIv2 Specification: https://fiware.github.io/specifications/ngsiv2/stable/
- NGSI-LD Specification: https://ngsi-ld.org
- VitePress: https://vitepress.dev/
MIT License
Copyright (c) 2026 Geolonia Inc.
See LICENSE for details.