mirror of https://github.com/FlowiseAI/Flowise.git
17 lines
431 B
Bash
17 lines
431 B
Bash
#!/bin/sh
|
|
for i in $(env | grep MY_APP_); do
|
|
key=$(echo $i | cut -d '=' -f 1)
|
|
value=$(echo $i | cut -d '=' -f 2-)
|
|
if [ -z "$value" ]; then
|
|
continue
|
|
fi
|
|
echo $key=$value
|
|
# sed All files
|
|
#find /usr/share/nginx/html -type f -exec sed -i "s|${key}|${value}|g" '{}' +
|
|
|
|
# sed JS and CSS only
|
|
find /app/packages/ui -type f \( -name '*.js' -o -name '*.css' \) -exec sed -i "s|${key}|${value}|g" '{}' +
|
|
done
|
|
|
|
exec "$@"
|