mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 07:54:36 +00:00
refactor README.rst and architecture file into sphinx doc project, automatically deploying on main merges and PRs. * add FAQs from https://chatmail.at/relays landing page * fix links, and streamline postfix/dovecot mentioning * add linkcheck to CI, fix several links and streamlihne DKIM section while at it * some streamlining, rename to "overview" * ci: upload documentation to chatmail.at/doc/relay * ci: main should be uploaded when docs.yaml changes * ci: fix typo * Update .github/workflows/docs-preview.yaml Co-authored-by: missytake <missytake@systemli.org>
26 lines
665 B
Bash
Executable File
26 lines
665 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if command -v lsb_release 2>&1 >/dev/null; then
|
|
case "$(lsb_release -is)" in
|
|
Ubuntu | Debian )
|
|
if ! dpkg -l | grep python3-dev 2>&1 >/dev/null
|
|
then
|
|
echo "You need to install python3-dev for installing the other dependencies."
|
|
exit 1
|
|
fi
|
|
if ! gcc --version 2>&1 >/dev/null
|
|
then
|
|
echo "You need to install gcc for building Python dependencies."
|
|
exit 1
|
|
fi
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
python3 -m venv --upgrade-deps venv
|
|
|
|
venv/bin/pip install -e chatmaild
|
|
venv/bin/pip install -e cmdeploy
|
|
venv/bin/pip install sphinx sphinxcontrib-mermaid sphinx-autobuild furo # for building the docs
|