21 lines
495 B
Bash
21 lines
495 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
ROOT_DIR=/workspace
|
||
|
|
|
||
|
|
# shellcheck source=entrypoint-common.sh
|
||
|
|
source "$ROOT_DIR/containers/entrypoint-common.sh"
|
||
|
|
|
||
|
|
entrypoint_checkout_branch "$ROOT_DIR" "landing-entrypoint"
|
||
|
|
entrypoint_require_kraiken_lib "$ROOT_DIR" "landing-entrypoint"
|
||
|
|
|
||
|
|
cd "$ROOT_DIR/landing"
|
||
|
|
|
||
|
|
entrypoint_install_deps "landing-entrypoint"
|
||
|
|
|
||
|
|
export CHOKIDAR_USEPOLLING=${CHOKIDAR_USEPOLLING:-1}
|
||
|
|
export HOST=0.0.0.0
|
||
|
|
export PORT=${PORT:-5174}
|
||
|
|
|
||
|
|
exec npm run dev -- --host 0.0.0.0 --port 5174
|