Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.42 KB

README.md

File metadata and controls

56 lines (36 loc) · 1.42 KB

Welcome to your Expo app 👋

This is an Expo project created with create-expo-app.

Get started

  1. Install dependencies

    npm install
  2. Update base URL for backend app. open App.ts and set BASE_URL

  • if using simulator, use localhost in base URL

    BASE_URL = 'http://localhost:8000/';
    
  • if using expo go on your cell phone, use the IP address of the machine which is running backend app.

    BASE_URL = 'http://192.168.1.8:8000/';
    
  1. Start the app

     npx expo start

In the output, you'll find options to open the app in a

This project uses file-based routing.

Future Work

  1. Implement validation for each field.
  2. Implement paginated load for data. Currently loads all the data.
  3. Add tests.

Get a fresh project

When you're ready, run:

npm run reset-project

This command will move the starter code to the app-example directory and create a blank app directory where you can start developing.