Installation
Get the boilerplate running on your local machine.
Follow these steps to get your Launch-Native app running in development.
1. Install Dependencies
Open your terminal, navigate to the mobile app folder, and run:
npm install
# or
yarn install
# or
pnpm install2. Environment Variables
Rename the .env.example file to .env. This is where you will store all your secret keys (Supabase, Polar, etc.).
cp .env.example .env3. Start the Development Server
Run the Expo CLI to start your project:
npx expo startYou can now open the app on your iOS Simulator, Android Emulator, or directly on your physical device using the Expo Go app!
