mirror of
https://github.com/certbot/certbot.git
synced 2026-02-18 01:58:29 -05:00
13 lines
327 B
Bash
Executable file
13 lines
327 B
Bash
Executable file
#!/bin/sh -xe
|
|
# Developer virtualenv setup for Let's Encrypt client
|
|
|
|
export VENV_ARGS="--python python2"
|
|
|
|
./bootstrap/dev/_venv_common.sh \
|
|
-r requirements.txt \
|
|
-e acme[testing] \
|
|
-e .[dev,docs,testing] \
|
|
-e letsencrypt-apache \
|
|
-e letsencrypt-nginx \
|
|
-e letshelp-letsencrypt \
|
|
-e letsencrypt-compatibility-test
|