mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
10 lines
222 B
Bash
Executable File
10 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
python3 -m venv venv
|
|
|
|
venv/bin/pip install -e deploy-chatmail
|
|
venv/bin/pip install -e chatmaild
|
|
|
|
source venv/bin/activate
|
|
echo activated 'venv' python virtualenv environment containing "cmdeploy" tool
|