Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 559 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (23 loc) · 559 Bytes

Contributing

Setup

Install poetry

pip3 install 'poetry>=1.2.0a2' --user

Install dependencies:

poetry install

Proxy configuration

If you're working under a proxy, make sure to add it in your environment:

export HTTP_PROXY=proxy.example.com:8080
export HTTPS_PROXY=proxy.example.com:8080

If you're working under a TLS termination proxy, you will need the following:

# For RHEL
export REQUESTS_CA_BUNDLE=/etc/pki/tls/cert.pem
# For Ubuntu
export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt