0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 17:00:36 -05:00
penpot/docker/images/files/nginx-entrypoint.sh

21 lines
396 B
Bash
Raw Normal View History

2020-09-09 08:49:06 -05:00
#!/usr/bin/env bash
log() {
echo "[$(date +%Y-%m-%dT%H:%M:%S%:z)] $*"
}
#########################################
## App Frontend config
#########################################
update_flags() {
if [ -n "$PENPOT_FLAGS" ]; then
sed -i \
-e "s|^//var penpotFlags = .*;|var penpotFlags = \"$PENPOT_FLAGS\";|g" \
"$1"
fi
}
update_flags /var/www/app/js/config.js
2020-09-09 08:49:06 -05:00
exec "$@";