| /expo/docs/pages/guides/ |
| H A D | environment-variables.mdx | 2 title: Environment variables in Expo 3 sidebar_title: Environment variables 4 description: Learn how to use environment variables in an Expo project. 15 ## Reading environment variables from .env files 44 ### How variables are loaded 64 ### Disabling environment variables 73 ## Environment variables in Expo Application Services 83 ## Migrating to Expo environment variables 105 ### From babel-plugin-transform-inline-environment-variables 121 -- plugins: ['transform-inline-environment-variables'], [all …]
|
| /expo/docs/pages/eas-update/ |
| H A D | environment-variables.mdx | 2 title: Use environment variables with EAS Update 3 sidebar_title: Environment variables 4 description: Learn how to set up and use environment variables with EAS Update. 12 …variables in Expo guide](/guides/environment-variables) describes how to use **.env** files to set… 18 ## Sharing environment variables between local development, EAS Update, and EAS Build 20 …variables into your app source code as long as they are present on the machine the `eas update` co… 22 …variables are defined in all cases would be to define your variables in **.env** files for local d… 72 // set variables based on channel... 81 ## Using variables in app.config.js 83 …ironment variables](/guides/environment-variables) are only available in SDK 49 or higher. In prev… [all …]
|
| /expo/packages/@expo/metro-config/src/transform-worker/ |
| H A D | css-modules.ts | 30 const { styles, reactNativeWeb, variables } = convertLightningCssToReactNativeWebStyleSheet( constant 36 )},{unstable_styles:${JSON.stringify(reactNativeWeb)}},${JSON.stringify(variables)});`; 59 const variables: Record<string, string> = {}; constant 71 variables[key] = className; 81 return { styles, reactNativeWeb, variables };
|
| /expo/docs/pages/build-reference/ |
| H A D | variables.mdx | 2 title: Environment variables and secrets in EAS Build 3 sidebar_title: Environment variables and secrets 4 description: Learn how to use environment variables and secrets in an EAS Build. 15 ## Setting plaintext environment variables in eas.json 19 …variables in a **.env** file for local development as described in the [environment variables guid… 98 ## Built-in environment variables 115 ## Using secrets in environment variables 216 …variables in EAS Update guide](/eas-update/environment-variables/#sharing-environment-variables-be… 220 Environment variables are applied in the following order: 223 2. Environment variables defined in EAS Secrets [all …]
|
| H A D | git-submodules.mdx | 16 Create a [secret](/build-reference/variables/#using-secrets-in-environment-variables) with a base64…
|
| /expo/packages/@expo/metro-config/build/transform-worker/ |
| H A D | css-modules.js | 42 variables 44 …ngify(styles)},{unstable_styles:${JSON.stringify(reactNativeWeb)}},${JSON.stringify(variables)});`; 61 const variables = {}; 72 variables[key] = className; 89 variables
|
| H A D | css-modules.js.map | 1 …variables","convertLightningCssToReactNativeWebStyleSheet","exports","outputModule","JSON","string…
|
| H A D | css-modules.d.ts | 19 variables: Record<string, string>;
|
| /expo/home/screens/SnacksListScreen/ |
| H A D | SnacksList.tsx | 8 variables: { 20 variables: {
|
| /expo/docs/pages/develop/development-builds/ |
| H A D | next-steps.mdx | 19 title="Environment variables" 20 description="Learn about different ways to use environment variables in an Expo project." 21 href="/guides/environment-variables/"
|
| /expo/home/screens/ProjectsListScreen/ |
| H A D | index.tsx | 10 variables: { 23 variables: {
|
| /expo/docs/pages/build/ |
| H A D | updates.mdx | 40 ## Environment variables and `eas update` 42 …variables set on the `env` field in build profiles are not available when you run `eas update`. Le…
|
| /expo/packages/@expo/env/ |
| H A D | README.md | 3 Load environment variables from `.env` files. Supports the [standard .env formats](https://github.c…
|
| H A D | CHANGELOG.md | 21 - Log env info when loading variables from dotenv files. ([#23215](https://github.com/expo/expo/pul…
|
| /expo/packages/expo-dev-launcher/bundle/queries/ |
| H A D | useChannelsForApp.tsx | 30 const variables = { appId }; 32 const response = await apiClient.request(query, variables);
|
| H A D | useUpdatesForBranch.tsx | 52 const variables = { 60 const response = await apiClient.request(query, variables);
|
| /expo/packages/@expo/metro-config/src/serializer/__tests__/__snapshots__/ |
| H A D | environmentVariableSerializerPlugin.test.ts.snap | 3 exports[`replaceEnvironmentVariables matches environment variables 1`] = `
|
| /expo/home/screens/BranchListScreen/ |
| H A D | BranchList.tsx | 21 variables: { 46 variables: {
|
| /expo/guides/ |
| H A D | Expo JavaScript Style Guide.md | 11 - [Classes, functions, and variables](#classes--functions--and-variables) 13 - [Private variables](#private-variables) 113 …the statements by the names of the imported modules, not their assigned variables. Use ASCII order… 218 ## Classes, functions, and variables 274 ## Private variables 276 Use an underscore to prefix instance variables that are intended to be private. This strikes a nice… 286 …elps, use this same convention on variables that are internal to a module to make it clearer to re… 301 …ps, consider naming Boolean variables with “is” or a similar verb at the beginning. Sometimes the …
|
| /expo/home/screens/ProjectScreen/ |
| H A D | ProjectContainer.tsx | 15 variables: {
|
| /expo/home/screens/BranchDetailsScreen/ |
| H A D | BranchDetailsContainer.tsx | 16 variables: {
|
| /expo/home/graphql/ |
| H A D | types.ts | 5685 return { query: Home_AccountDataDocument, variables: variables } 5748 return { query: BranchDetailsDocument, variables: variables } 5824 return { query: BranchesForProjectDocument, variables: variables } 5861 return { query: Home_CurrentUserActorDocument, variables: variables } 5916 return { query: Home_ProfileData2Document, variables: variables } 5959 return { query: Home_MyAppsDocument, variables: variables } 6001 return { query: Home_ProfileSnacksDocument, variables: variables } 6125 return { query: Home_AccountAppsDocument, variables: variables } 6171 return { query: Home_AccountSnacksDocument, variables: variables } 6263 return { query: DeleteAccountPermissionsDocument, variables: variables } [all …]
|
| /expo/docs/pages/versions/v49.0.0/config/ |
| H A D | metro.mdx | 10 ## Environment variables 12 Environment variables can be loaded using **.env** files. These files are loaded according to the [… 21 …onment variables until it invokes Expo CLI for compiling and bundling. Learn more about [environme… 36 ### Client environment variables 38 Environment variables prefixed with `EXPO_PUBLIC_` will be exposed to the app at build-time. For ex… 40 Environment variables will not be inlined in code inside of **node_modules**. 42 … variables are inlined in the bundle, which means that `process.env` is not an iterable object, an… 44 - Client environment variables should not contain secrets as they will be viewable in plain-text fo… 45 - Use client environment variables for partially protected values, such as public API keys you don'… 46 …variables can be updated while the development server (`npx expo start`) is running, without resta… [all …]
|
| /expo/packages/@expo/metro-config/src/transform-worker/__tests__/ |
| H A D | css-modules.test.ts | 92 variables: { '--accent-color': '--a3Dm-a_accent-color' },
|
| /expo/packages/@expo/cli/src/api/graphql/ |
| H A D | client.ts | 71 variables: Variables | undefined,
|