alernative approaches to setting CA_BUNDLE

This commit is contained in:
c-w-m 2023-01-23 14:47:33 -07:00
parent f43650ca34
commit 029c38ef8a

View File

@ -3,6 +3,14 @@
CA_BUNDLE=C:\your\path\and\certificates.pem
# alternatively you can set this value as an environment variable
# ----------------------------------------------------------------------------
# two alternatives to having a .env file
#
# ( 1.) you can set this value as an environment variable
# $ set CA_BUNDLE=C:\your\path\and\certificates.pem # for win OS
# $ export CA_BUNDLE=C:\your\path\and\certificates.pem # for nix OS
#
# ( 2.) or you can pass the CA_BUNDLE with the `--verify` argument
# example
# > pipreqs --verify C:\your\path\and\certificates.pem .
# ----------------------------------------------------------------------------