mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
10 lines
205 B
Bash
Executable File
10 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
python3 -m venv venv
|
|
pip=venv/bin/pip
|
|
|
|
$pip install pyinfra pytest build 'setuptools>=68' tox
|
|
$pip install -e deploy-chatmail
|
|
$pip install -e chatmaild
|
|
venv/bin/deploy-chatmail init $*
|