forked from Fediseer/FediseerGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-build.sh
executable file
·54 lines (48 loc) · 2.1 KB
/
docker-build.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
43
44
45
46
47
48
49
50
51
52
53
54
ORIGINAL_DIR=$(pwd)
if [ -z ${FEDISEER_API_URL+x} ]; then
FEDISEER_API_URL=https://fediseer.com/api
fi
if [ -z ${FEDISEER_API_VERSION+x} ]; then
FEDISEER_API_VERSION=v1
fi
if [ -z ${FEDISEER_APP_NAME+x} ]; then
FEDISEER_APP_NAME=FediseerGUI
fi
if [ -z ${FEDISEER_APP_MAINTAINER+x} ]; then
echo "Maintainer must be specified using the FEDISEER_APP_MAINTAINER env variable."
exit 1
fi
if [ -z ${FEDISEER_APP_MAINTAINER+x} ]; then
echo "Maintainer must be specified using the FEDISEER_APP_MAINTAINER env variable."
exit 1
fi
if [ -z ${FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES+x} ]; then
FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES=__all__
fi
if [ -z ${FEDISEER_SOURCE_CODE_LINK+x} ]; then
FEDISEER_SOURCE_CODE_LINK=https://github.com/Fediseer/FediseerGUI
fi
if [ -z ${FEDISEER_APP_VERSION+x} ]; then
FEDISEER_APP_VERSION=$(grep appVersion src/environments/environment.ts | cut -c16-50 | rev | cut -c3- | rev)
fi
if [ -z ${FEDISEER_DONATE_LINK+x} ]; then
FEDISEER_DONATE_LINK=https://liberapay.com/Fediseer/
fi
OLD_IFS=$IFS
FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES_RESULT='['
IFS=','
for INSTANCE in $FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES; do
FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES_RESULT="$FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES_RESULT '$INSTANCE',"
done
FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES_RESULT="$FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES_RESULT]"
IFS=$OLD_IFS
JSON="{apiUrl: '$FEDISEER_API_URL', apiVersion: '$FEDISEER_API_VERSION', appName: '$FEDISEER_APP_NAME', appVersion: '$FEDISEER_APP_VERSION', maintainer: '$FEDISEER_APP_MAINTAINER', sourceCodeLink: '$FEDISEER_SOURCE_CODE_LINK', defaultCensuresListInstanceFilter: $FEDISEER_DEFAULT_CENSURE_LIST_FILTER_INSTANCES_RESULT, donateLink: '$FEDISEER_DONATE_LINK', production: true}";
echo "export const environment = $JSON;" > src/environments/environment.ts
cd /app
if [ -z ${FEDISEER_ENABLE_SSR+x} ]; then
yarn build && mv dist/FediseerGUI/browser/* /usr/share/nginx/html
else
cp nginx-proxy.conf /etc/nginx/conf.d/default.conf
yarn build:ssr && node dist/FediseerGUI/server/main.js &
fi
cd "$ORIGINAL_DIR"