mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 16:08:20 -05:00
12 lines
277 B
Bash
Executable File
12 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
|
|
update-ca-certificates
|
|
|
|
if [ -d "/backend/frontend-build/assets" ]; then
|
|
cd /backend/frontend-build
|
|
/backend/scripts/replace-standalone-build-variable.sh "__INFISICAL_CDN_URL__" "${CDN_URL:-}"
|
|
cd /backend
|
|
fi
|
|
|
|
exec node --enable-source-maps dist/main.mjs
|