ai/at
1
0
This commit is contained in:
2025-12-07 11:12:08 +09:00
parent 3e7c56465f
commit aef9db4a89
3 changed files with 11 additions and 3 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@ repos
.claude .claude
deploy.yml deploy.yml
claude.md claude.md
.env

View File

@@ -1,5 +1,5 @@
APP_NAME="Aiat" APP_NAME="Aiat"
DEVICE_ID="xxx" DEVICE_ID="00008110-001855EA36D0401E"
REPO_DIR="../repos/social-app" REPO_DIR="../repos/social-app"
APP_SLUG="aiat" APP_SLUG="aiat"
APP_SCHEME="syui" APP_SCHEME="syui"

View File

@@ -59,5 +59,12 @@ read
# 5. Run # 5. Run
echo "5. Building and Running..." echo "5. Building and Running..."
# If user wants specific device ID, uncomment below, otherwise let Expo ask/pick boot simulator # If user wants specific device ID, uncomment below, otherwise let Expo ask/pick boot simulator
# npx expo run:ios --device "$DEVICE_ID" --configuration Release
case $1 in
d|devicei)
npx expo run:ios --device "$DEVICE_ID" --configuration Release
;;
*)
npx expo run:ios npx expo run:ios
;;
esac