this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add script to start without simulator

+9 -5
+4 -2
README.md
··· 15 15 You can then start the expo server with: 16 16 17 17 ```bash 18 - pnpm dev 18 + pnpm dev:expo 19 19 ``` 20 20 21 - (Note: this is a shortcut for `expo start --ios`) 21 + (Note: this is just a shortcut for `expo start`) 22 + 23 + Then just scan the QR code!
+1
apps/expo/package.json
··· 5 5 "scripts": { 6 6 "clean": "git clean -xdf .expo .turbo node_modules", 7 7 "dev": "expo start --ios", 8 + "dev:expo": "expo start", 8 9 "dev:android": "expo start --android", 9 10 "dev:ios": "expo start --ios", 10 11 "lint": "eslint .",
+2 -2
apps/expo/src/app/(tabs)/search.tsx
··· 1 1 import { Text, View } from "react-native"; 2 2 3 - import { useAuthedAgent } from "../../lib/agent"; 3 + // import { useAuthedAgent } from "../../lib/agent"; 4 4 5 5 export default function SearchPage() { 6 - const agent = useAuthedAgent(); 6 + // const agent = useAuthedAgent(); 7 7 8 8 return ( 9 9 <View className="flex-1 justify-center">
+2 -1
package.json
··· 12 12 "db:generate": "turbo db:generate", 13 13 "db:push": "turbo db:push db:generate", 14 14 "dev:both": "turbo dev --parallel", 15 - "dev": "turbo dev --filter @graysky/app", 15 + "dev": "cd apps/expo && pnpm dev", 16 + "dev:expo": "cd apps/expo && pnpm dev:expo", 16 17 "format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore", 17 18 "lint": "turbo lint && manypkg check", 18 19 "lint:fix": "turbo lint:fix && manypkg fix",