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