react-native-config/Example/README.md

25 lines
626 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Example app using react-native-config
Just a simple app accessing config variables from `.env` and `.env.production`.
## Running
By default it will read variables from `.env`:
```bash
$ react-native run-android
```
To read from another file just specify it with `ENVFILE`, like:
```bash
$ ENVFILE=.env.prod react-native run-android
```
## Running from Xcode
Open the Xcode project file in `Example/ios/Example.xcodeproj`.
Notice there are two schemes setup for the application: "Example" runs the default build, reading vars from `.env` and "Example (production)" is configured to read from `.env.production`.