summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/scripts/envsubst.sh
blob: d7ae9ecb0646ed91cbae68bed6e1049b1aed5b46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

auto_envsubst() {
    input_path="/opendc/.next.template"
    output_path="/opendc/.next"

    cp -r "$input_path" "$output_path"
    find "$output_path" -type f -name '*.js' -exec perl -pi -e 's/%%(NEXT_PUBLIC_[_A-Z0-9]+)%%/$ENV{$1}/g' {} \;
}

auto_envsubst
exit 0