This is an Expo project created with create-expo-app
.
-
Install dependencies
npm install
-
Update base URL for backend app. open
App.ts
and setBASE_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/';
-
Start the app
npx expo start
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
This project uses file-based routing.
- Implement validation for each field.
- Implement paginated load for data. Currently loads all the data.
- Add tests.
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.