Quick Start
App
Get the RawStack React Native app running on a simulator or device.
Prerequisites
- Node.js 20+
- iOS: Xcode + CocoaPods (
brew install cocoapods) - Android: Android Studio + Android SDK
Steps
1. Install dependencies
cd apps/app
npm install2. iOS — install native pods (first time only)
bundle install
bundle exec pod install --project-directory=ios3. Configure environment
cp .env.example .envSet API_URL=http://localhost:3001.
4. Start Metro and run on a simulator
# Start the Metro bundler
npm start
# In a second terminal:
npm run ios # iOS Simulator
npm run android # Android Emulator