Skip to content

Commit a121490

Browse files
authored
Merge branch 'prometheus:master' into master
2 parents 8a3419c + 3e6b9e2 commit a121490

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

CONTRIBUTING.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Contributing
2+
3+
## Protocol Buffers
4+
5+
The `build.rs` script in this library depends upon the
6+
[Protocol Buffers compiler][protoc]. Be sure that `protoc` is installed and
7+
available within your `PATH`.
8+
9+
[protoc]: https://docs.rs/prost-build/latest/prost_build/#sourcing-protoc
10+
11+
## Python Dependencies
12+
13+
This repository uses the [`prometheus-client`][client-python] Python client
14+
library in its test suite.
15+
16+
You may create and activate a virtual environment with this dependency
17+
installed by running the following shell commands from the root of this
18+
repository:
19+
20+
```shell
21+
python -m venv ./venv
22+
source venv/bin/activate
23+
pip install prometheus-client
24+
```
25+
26+
[client-python]: https://github.com/prometheus/client_python

0 commit comments

Comments
 (0)