b359f9eac6
* feat: supports subdirectory deployment * feat: auto publicPath * fix: buildIndexHtml * fix: format * fix: regexp * fix: test error * fix: nocobase.conf * fix: path * fix: nocobase.conf * fix: bugs * fix: resourcer prefix * fix: cas
31 lines
906 B
Bash
Executable File
31 lines
906 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -d "/app/nocobase" ]; then
|
|
mkdir nocobase
|
|
fi
|
|
|
|
if [ ! -f "/app/nocobase/package.json" ]; then
|
|
echo 'copying...'
|
|
tar -zxf /app/nocobase.tar.gz --absolute-names -C /app/nocobase
|
|
touch /app/nocobase/node_modules/@nocobase/app/dist/client/index.html
|
|
fi
|
|
|
|
cd /app/nocobase && yarn nocobase create-nginx-conf
|
|
rm -rf /etc/nginx/sites-enabled/nocobase.conf
|
|
ln -s /app/nocobase/storage/nocobase.conf /etc/nginx/sites-enabled/nocobase.conf
|
|
|
|
nginx
|
|
echo 'nginx started';
|
|
|
|
cd /app/nocobase && yarn start --quickstart
|
|
|
|
# Run command with node if the first argument contains a "-" or is not a system command. The last
|
|
# part inside the "{}" is a workaround for the following bug in ash/dash:
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874264
|
|
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ] || { [ -f "${1}" ] && ! [ -x "${1}" ]; }; then
|
|
set -- node "$@"
|
|
fi
|
|
|
|
exec "$@"
|