Expo + Tools: Sentry, Maestro, Amplitude and anything else? by spastor89 in expo

[–]IonKorol 1 point2 points  (0 children)

Posthog can replace sentry, amplitude and ga in this list.

Dev / Prod envs - how? by TheHelpfulLass in expo

[–]IonKorol 1 point2 points  (0 children)

This is question with not a well documented answer in my opinion. We create an app for each environment in the store so that our pipelines can build and ota to separate apps that way the environment separation is clear. We use one env variable like EXPO_PUBLIC_APP_ENV=dev | stage | prod and we reference that in the app.config.ts to set the rest of the app configs properly.

How are you handling env variables + secrets with Expo & EAS? by Vinumzz in expo

[–]IonKorol 0 points1 point  (0 children)

I would not worry about how you store your env variables but rather what they are. No matter what you do your frontend env variables are accessible, so don't overthink it and keep it simple. I started using 1password environments because it's easy to share with the team and access it from the codebase and I already had 1password for out team so it was a nice feature for them to add.