mirror of
https://github.com/chatmail/relay.git
synced 2026-05-12 09:04:36 +00:00
12 lines
310 B
Bash
Executable File
12 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
python3 -m venv --upgrade-deps venv
|
|
|
|
if [ -z ${SOCKS5_PROXY+x} ]; then
|
|
venv/bin/pip install -e chatmaild
|
|
venv/bin/pip install -e cmdeploy
|
|
else
|
|
venv/bin/pip install --proxy socks5://$SOCKS5_PROXY -e chatmaild
|
|
venv/bin/pip install --proxy socks5://$SOCKS5_PROXY -e cmdeploy
|
|
fi
|