-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-env.sh
More file actions
executable file
·35 lines (25 loc) · 922 Bytes
/
build-env.sh
File metadata and controls
executable file
·35 lines (25 loc) · 922 Bytes
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
#!/bin/bash
function buildEnvironment(){
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ ${SOURCE} != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
cd ${DIR}/../
ENV=app-env
REQUIREMENTS=requirements.txt
#virtualenv $ENV
python3 -m venv ${ENV}
PYTHONENV=${ENV}/bin
SRCROOT=src
#activate env and add project src to PYTHONPATH
chmod +x ${PYTHONENV}/activate
${PYTHONENV}/activate
export PYTHONPATH=${PYTHONPATH}:${SRCROOT}
if [ -f ${REQUIREMENTS} ]; then
${PYTHONENV}/pip install -r ${REQUIREMENTS}
fi
}
buildEnvironment