mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
change: do not add console output by default feat: add GA for docs refactor: move builtin to internal refactor: relocate sentry sdk feat: report events with ga change: use http client session fix: report GA events change: sentry
67 lines
1.4 KiB
YAML
67 lines
1.4 KiB
YAML
# install mkdocs and material design
|
|
# $ pip install mkdocs-material
|
|
|
|
# usage
|
|
# $ mkdocs serve # build docs and preview
|
|
# $ mkdocs gh-deploy # Deploy your documentation to GitHub Pages
|
|
|
|
# Project information
|
|
site_name: HttpRunner+ Docs
|
|
site_description: HttpRunner+ User Documentation
|
|
site_author: 'debugtalk'
|
|
|
|
# Repository
|
|
repo_name: HttpRunner
|
|
repo_url: https://github.com/httprunner/hrp
|
|
edit_uri: ""
|
|
|
|
# Copyright
|
|
copyright: 'Copyright © 2021 debugtalk'
|
|
|
|
# Configuration
|
|
theme:
|
|
name: 'material'
|
|
language: 'zh'
|
|
palette:
|
|
primary: 'indigo'
|
|
accent: 'indigo'
|
|
font:
|
|
text: 'Roboto'
|
|
code: 'Roboto Mono'
|
|
|
|
# Extensions
|
|
markdown_extensions:
|
|
- admonition
|
|
- codehilite:
|
|
guess_lang: false
|
|
- toc:
|
|
permalink: true
|
|
- def_list
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
|
|
# extra
|
|
extra:
|
|
search:
|
|
language: 'jp'
|
|
social:
|
|
- icon: material/library
|
|
link: https://debugtalk.com
|
|
- icon: fontawesome/brands/github-alt
|
|
link: 'https://github.com/httprunner'
|
|
analytics:
|
|
provider: google
|
|
property: G-N2DPN3VP7K
|
|
|
|
# index pages
|
|
nav:
|
|
- README: README.md
|
|
- Installation: installation.md
|
|
- CLI Tools:
|
|
- hrp: cmd/hrp.md
|
|
- hrp_run: cmd/hrp_run.md
|
|
- hrp_har2case: cmd/hrp_har2case.md
|
|
- hrp_boom: cmd/hrp_boom.md
|
|
- Sponsors: sponsors.md
|
|
- Release History: CHANGELOG.md
|