Lines Matching refs:environment
4 description: Learn how to use environment variables and secrets in an EAS Build.
11 …environment-variables) describes how to use **.env** files to set environment variables that can b…
13 …environment variables outside of your JavaScript code to customize your app binary at build time, …
15 ## Setting plaintext environment variables in eas.json
19 …v** file for local development as described in the [environment variables guide](/guides/environme…
34 Then you can set the same environment variable for each build profile in **eas.json**:
53 …env.EXPO_PUBLIC_API_URL` will be substituted for the applicable value depending on the environment.
55 …SDK 49 and higher. See notes for [SDK 48 and lower](/guides/environment-variables#environment-vari…
59 You can use environment variables in a [dynamic config](/workflow/configuration/#dynamic-configurat…
86 > All environment variables in your **eas.json** build profile are available when evaluating **app.…
90 Any environment variables set in your **eas.json** build profile are also available to other build …
92 …environment variables dynamically during the build process. The `set-env` executable is available …
94 …g in one of the [EAS Build hooks](/build-reference/npm-hooks/) and the environment variable `EXAMP…
98 ## Built-in environment variables
100 The following environment variables are exposed to each build job and can be used within any build …
102 - `CI=1` - indicates this is a CI environment
103 - `EAS_BUILD=true` - indicates this is an EAS Build environment
115 ## Using secrets in environment variables
121 …environment variable. For example, if you created a file secret named `SECRET_FILE`, EAS Build wil…
123 …are encrypted at rest and in transit and are only decrypted in a secure environment by EAS servers.
125 …rets for each app. Account-wide secrets will be exposed to every build environment across all of y…
208 …ommended practice is to use **.env** files in your local environment, while defining environment v…
212 ### How do I share environment variables between my local development environment, EAS Update, and …
216 …environment-variables/#sharing-environment-variables-between-local-development-eas-update-and-eas-…
226 … Expo website or with `eas secret:create` will take precedence over an environment variable of the…
230 ### How do environment variables work for my Expo Development Client builds?
232 …px expo start` to load your app inside of your development build, only environment variables that …
234 ### Can I just set my environment variables on a CI provider?
236 …eful to not confuse setting environment variables on GitHub Actions (or the provider of your choic…