-
Install dependencies
bun install
-
Start the app
bun run 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
You can start developing by editing the files inside the app directory. This project uses file-based routing.
To learn more about developing your project with Expo, look at the following resources:
- Expo documentation: Learn fundamentals, or go into advanced topics with our guides.
- Learn Expo tutorial: Follow a step-by-step tutorial where you'll create a project that runs on Android, iOS, and the web.
To use the Map features, you must configure Google Maps API keys for iOS and Android.
-
Create a
.envfile in thefrontend/apps/mobiledirectory (copy from a template if available).cd frontend/apps/mobile cp env.sample .env -
Edit
.envand fill in the required values:
The map view (app/(tabs)/map.tsx) retrieves event occurrences dynamically from the backend API. It renders location pins for all events that have valid geographic coordinates.
To populate the map:
-
Ensure the backend API is running and accessible.
-
Create event occurrences with associated locations containing valid latitude and longitude.