mirror of
https://github.com/certbot/certbot.git
synced 2026-03-23 19:03:33 -04:00
12 lines
283 B
Bash
Executable file
12 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
|