Set APP_VARIANT=development in app startup scripts

This commit is contained in:
Mohamed Boudra
2026-04-20 09:07:34 +07:00
parent 04465f124c
commit afe0eaab5b
3 changed files with 3 additions and 2 deletions

View File

@@ -54,6 +54,7 @@ npm run build --workspace=@getpaseo/relay
$env:PASEO_CORS_ORIGINS = "*"
# Configure the app to auto-connect to this daemon on localhost
$env:APP_VARIANT = "development"
$env:EXPO_PUBLIC_LOCAL_DAEMON = "localhost:6767"
$env:BROWSER = "none"

View File

@@ -51,4 +51,4 @@ concurrently \
--names "daemon,metro" \
--prefix-colors "cyan,magenta" \
"portless run --name daemon sh -c 'PASEO_LISTEN=0.0.0.0:\$PORT exec npm run dev:server'" \
"cd packages/app && BROWSER=none EXPO_PUBLIC_LOCAL_DAEMON='${DAEMON_ENDPOINT}' portless run --name app npx expo start"
"cd packages/app && BROWSER=none APP_VARIANT=development EXPO_PUBLIC_LOCAL_DAEMON='${DAEMON_ENDPOINT}' portless run --name app npx expo start"