/CoffeeShop

Primary LanguageTypeScript

Coffee Shop App using React Native

Screenshot 2023-11-12 at 10 43 23 PM

Getting Started

Step 1: Clone the repo

To clone the repo you will:

# git clone
git clone git@github.com:Ayomidemi/CoffeeShop.git

# install all dependecies
yarn install

# on iOS
cd ios
pod install
cd ..

#on Amdroid
cd android
./gradlew clean
cd ..

Step 2: Start your Application

Let Metro Bundler run in its own terminal. Open a new terminal from the root of the project. Run the following command to start your Android or iOS app:

For Android

# using npm
npm run android

# OR using Yarn
yarn android

For iOS

# using npm
npm run ios

# OR using Yarn
yarn ios

If everything is set up correctly, you should see your new app running in your Android Emulator or iOS Simulator shortly provided you have set up your emulator/simulator correctly.

This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.

Happy Coding!