forked from baron/baron-sso
15 lines
272 B
Bash
15 lines
272 B
Bash
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
cd /workspace
|
|
/bin/sh ./scripts/sync_userfront_locales.sh
|
|
|
|
cd /workspace/userfront
|
|
exec flutter run \
|
|
-d web-server \
|
|
--web-hostname 0.0.0.0 \
|
|
--web-port "${USERFRONT_INTERNAL_PORT:-5000}" \
|
|
--wasm \
|
|
--debug \
|
|
--no-web-resources-cdn
|