Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Hoffman-Andrews <github@hoffman-andrews.com>2017-04-07 20:15:52 +0300
committerJacob Hoffman-Andrews <github@hoffman-andrews.com>2017-04-07 20:15:52 +0300
commita08e9599f5f70b059285b48d984b898a69a25092 (patch)
tree11ad9b7686b92bf4464ebb67d18ff2d5d5be164e /docs
parente73c29374a59d11caaab8d7e7db875964769715a (diff)
Review feedback.
Diffstat (limited to 'docs')
-rw-r--r--docs/contributing.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst
index d6b77facf..23cd59aa7 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -39,6 +39,7 @@ Then in each shell where you're working on the client, do:
.. code-block:: shell
source ./venv/bin/activate
+ export SERVER=https://acme-staging.api.letsencrypt.org/directory
source tests/integration/_common.sh
After that, your shell will be using the virtual environment, and you run the
@@ -116,6 +117,14 @@ and working. Fetch and start Boulder using:
If you have problems with Docker, you may want to try `removing all containers and
volumes`_ and making sure you have at least 1GB of memory.
+Set up a certbot_test alias that enables easily running against the local
+Boulder:
+
+.. code-block:: shell
+
+ export SERVER=http://localhost:4000/directory
+ source tests/integration/_common.sh
+
Run the integration tests using:
.. code-block:: shell