Quick Start
App
Get the RawStack React Native app running on a simulator or device.
Prerequisites
- Node.js 22+
- 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)
cd apps/app/ios
bundle install
bundle exec pod install
cd ..3. Configure environment
cp .env.dist .envSet API_URL=http://localhost:3001/v1.
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 EmulatorFind out more about the app by reading the in-depth deep dive.