mirror of
https://github.com/bytedance/g3.git
synced 2026-04-28 03:30:31 +00:00
Some checks are pending
CodeCoverage / lib unit test (push) Waiting to run
CodeCoverage / g3proxy test (push) Waiting to run
CodeCoverage / g3bench test (push) Waiting to run
CodeCoverage / g3statsd test (push) Waiting to run
CrossCompiling / Build (push) Waiting to run
Linux-CI / Build (push) Waiting to run
Linux-CI / Clippy (push) Waiting to run
Linux-CI / Build vendored (push) Waiting to run
Linux-CI / Build with OpenSSL Async Job (push) Waiting to run
Windows-CI / Build vendored (push) Waiting to run
MacOS-CI / Build (push) Waiting to run
MacOS-CI / Build vendored (push) Waiting to run
Sphinx-Doc / build (g3keymess) (push) Waiting to run
Sphinx-Doc / build (g3proxy) (push) Waiting to run
Sphinx-Doc / build (g3statsd) (push) Waiting to run
Sphinx-Doc / build (g3tiles) (push) Waiting to run
StaticLinking / musl (push) Waiting to run
StaticLinking / msvc (push) Waiting to run
Windows-CI / Build (push) Waiting to run
24 lines
412 B
Python
24 lines
412 B
Python
# File: docs/conf.py
|
|
|
|
extensions = [
|
|
"multiproject",
|
|
]
|
|
|
|
# Define the projects that will share this configuration file.
|
|
multiproject_projects = {
|
|
"project": {
|
|
"path": "project",
|
|
},
|
|
"g3proxy": {
|
|
"path": "g3proxy",
|
|
},
|
|
"g3tiles": {
|
|
"path": "g3tiles",
|
|
},
|
|
"g3statsd": {
|
|
"path": "g3statsd",
|
|
},
|
|
"g3keymess": {
|
|
"path": "g3keymess",
|
|
},
|
|
}
|