# tikv-dev-guide **Repository Path**: mirrors_tikv/tikv-dev-guide ## Basic Information - **Project Name**: tikv-dev-guide - **Description**: The TiKV development/contribution guide - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-01 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # TiKV Development Guide This repository contains the source of TiKV Development Guide. ## Requirements Building the book requires [mdBook](https://github.com/rust-lang-nursery/mdBook). To get it: ```bash $ cargo install mdbook ``` ## Preview To preview the book, type: ```bash $ mdbook serve ``` By default, it will create a server listening on [http://localhost:3000](http://localhost:3000), you can open it with a brower to preview the book. ## Building To build the book, type: ```bash $ mdbook build ``` The output will be in the `book` subdirectory. To check it out, open it in your web browser. _Firefox:_ ```bash $ firefox book/index.html # Linux $ open -a "Firefox" book/index.html # OS X $ Start-Process "firefox.exe" .\book\index.html # Windows (PowerShell) $ start firefox.exe .\book\index.html # Windows (Cmd) ``` _Chrome:_ ```bash $ google-chrome book/index.html # Linux $ open -a "Google Chrome" book/index.html # OS X $ Start-Process "chrome.exe" .\book\index.html # Windows (PowerShell) $ start chrome.exe .\book\index.html # Windows (Cmd) ```