Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/@react-native-community/cli-tools/build/launchPackager.command
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

13 lines
324 B
Bash
Executable File

#!/bin/bash
THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
source "$THIS_DIR/.packager.env"
cd "$PROJECT_ROOT"
"$REACT_NATIVE_PATH/cli.js" start --port $RCT_METRO_PORT
if [[ -z "$CI" ]]; then
echo "Process terminated. Press <enter> to close the window"
read -r
fi