Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.78 KB

File metadata and controls

54 lines (33 loc) · 1.78 KB

Mobile

Get started

  1. Install dependencies

    bun install
  2. Start the app

    bun run expo start

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

You can start developing by editing the files inside the app directory. This project uses file-based routing.

Learn more

To learn more about developing your project with Expo, look at the following resources:

Configuration

To use the Map features, you must configure Google Maps API keys for iOS and Android.

  1. Create a .env file in the frontend/apps/mobile directory (copy from a template if available).

    cd frontend/apps/mobile
    cp env.sample .env
  2. Edit .env and fill in the required values:

Map Integration & Managing Locations

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:

  1. Ensure the backend API is running and accessible.

  2. Create event occurrences with associated locations containing valid latitude and longitude.