-
Notifications
You must be signed in to change notification settings - Fork 26
/
generate-doc.sh
executable file
·42 lines (32 loc) · 1.09 KB
/
generate-doc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash -ex
export TERM=xterm
TERM=${TERM:-xterm}
# set up terminal colors
NORMAL=$(tput sgr0)
RED=$(tput bold && tput setaf 1)
GREEN=$(tput bold && tput setaf 2)
YELLOW=$(tput bold && tput setaf 3)
printf "%sCreate Virtualenv for Python deps ..." "${NORMAL}"
function prepare_venv() {
VIRTUALENV=$(which virtualenv)
if [ $? -eq 1 ]
then
# python36 which is in CentOS does not have virtualenv binary
VIRTUALENV=$(which virtualenv-3)
fi
${VIRTUALENV} -p python3 venv && source venv/bin/activate
if [ $? -ne 0 ]
then
printf "%sPython virtual environment can't be initialized%s" "${RED}" "${NORMAL}"
exit 1
fi
printf "%sPython virtual environment initialized%s\n" "${YELLOW}" "${NORMAL}"
pip install -U pip
pip install -r requirements.txt
}
[ "$NOVENV" == "1" ] || prepare_venv || exit 1
export PYTHONPATH=gateway
# now we are surely in the Python virtual environment
pdoc --html --overwrite --all-submodules tests
pdoc --html --overwrite --all-submodules gateway
printf "%sdocumentation generated%s\n\n" "${GREEN}" "${NORMAL}"