
`window.ALLOW_ICON_CHANGES` needs to be written as a boolean during the docker deploy instead of a string. The strings `"true"` and `"false"` both evaluate to `true` in JS, so we need to use the boolean `true` and `false` for the assertion in `Logo.vue` to be meaningful. Co-authored-by: SteffeyDev <steffeydev@icloud.com> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/3567 Reviewed-by: konrad <k@knt.li> Co-authored-by: steffeydev <steffeydev@icloud.com> Co-committed-by: steffeydev <steffeydev@icloud.com>
18 lines
968 B
Bash
Executable File
18 lines
968 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
echo "info: API URL is $VIKUNJA_API_URL"
|
|
echo "info: Sentry enabled: $VIKUNJA_SENTRY_ENABLED"
|
|
|
|
# Escape the variable to prevent sed from complaining
|
|
VIKUNJA_API_URL="$(echo "$VIKUNJA_API_URL" | sed -r 's/([:;])/\\\1/g')"
|
|
VIKUNJA_SENTRY_DSN="$(echo "$VIKUNJA_SENTRY_DSN" | sed -r 's/([:;])/\\\1/g')"
|
|
|
|
sed -ri "s:^(\s*window.API_URL\s*=)\s*.+:\1 '${VIKUNJA_API_URL}':g" /usr/share/nginx/html/index.html
|
|
sed -ri "s:^(\s*window.SENTRY_ENABLED\s*=)\s*.+:\1 ${VIKUNJA_SENTRY_ENABLED}:g" /usr/share/nginx/html/index.html
|
|
sed -ri "s:^(\s*window.SENTRY_DSN\s*=)\s*.+:\1 '${VIKUNJA_SENTRY_DSN}':g" /usr/share/nginx/html/index.html
|
|
sed -ri "s:^(\s*window.PROJECT_INFINITE_NESTING_ENABLED\s*=)\s*.+:\1 '${VIKUNJA_PROJECT_INFINITE_NESTING_ENABLED}':g" /usr/share/nginx/html/index.html
|
|
sed -ri "s:^(\s*window.ALLOW_ICON_CHANGES\s*=)\s*.+:\1 ${VIKUNJA_ALLOW_ICON_CHANGES}:g" /usr/share/nginx/html/index.html
|
|
|
|
date -uIseconds | xargs echo 'info: started at'
|