6 lines
169 B
Bash
6 lines
169 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Minimal CI entrypoint for landing — just starts the dev server.
|
||
|
|
set -euo pipefail
|
||
|
|
cd /app/landing
|
||
|
|
exec npm run dev -- --host 0.0.0.0 --port 5174
|