Skip to content

Instantly share code, notes, and snippets.

@Thunderbird7
Last active August 7, 2017 09:43
Show Gist options
  • Save Thunderbird7/f656c4df5aa1ea1da5ba71eac8afc766 to your computer and use it in GitHub Desktop.
Save Thunderbird7/f656c4df5aa1ea1da5ba71eac8afc766 to your computer and use it in GitHub Desktop.
import { NativeModules } from 'react-native'
import Config from 'config.json'
const environment = NativeModules.RNConfig.buildEnvironment
const getAPIURL = () => {
console.log('Current ENV: ', environment)
return Config[environment].apiURL
}
export default {
baseURL: getAPIURL(),
imageURL: getAPIURL().replace('/graphql', '')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment