mirror of
https://github.com/certbot/certbot.git
synced 2026-07-31 18:34:41 +02:00
13 lines
283 B
Bash
Executable File
13 lines
283 B
Bash
Executable File
#!/bin/sh -xe
|
|
# Developer virtualenv setup for Let's Encrypt client
|
|
|
|
export VENV_ARGS="--python python2"
|
|
|
|
./tools/_venv_common.sh \
|
|
-e acme[dev] \
|
|
-e .[dev,docs] \
|
|
-e letsencrypt-apache \
|
|
-e letsencrypt-nginx \
|
|
-e letshelp-letsencrypt \
|
|
-e letsencrypt-compatibility-test
|