keepyourmouthshut/RiderApp/environment.js

39 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-03-20 10:17:25 +00:00
/*****************************
* environment.js
* path: '/environment.js' (root of your project)
******************************/
import Constants from "expo-constants";
const ENV = {
development: {
// GRAPHQL_URL: 'http://192.168.100.90:8000/graphql',
// WS_GRAPHQL_URL: 'ws://192.168.100.90:8000/graphql'
2023-04-13 07:21:09 +00:00
GRAPHQL_URL: "https://enatega-singlevendor.up.railway.app/graphql",
WS_GRAPHQL_URL: "wss://enatega-singlevendor.up.railway.app/graphql",
2023-03-20 10:17:25 +00:00
},
staging: {
2023-04-13 07:21:09 +00:00
GRAPHQL_URL: "https://enatega-singlevendor.up.railway.app/graphql",
WS_GRAPHQL_URL: "wss://enatega-singlevendor.up.railway.app/graphql",
2023-03-20 10:17:25 +00:00
},
production: {
2023-04-13 07:21:09 +00:00
GRAPHQL_URL: "https://enatega-singlevendor.up.railway.app/graphql",
WS_GRAPHQL_URL: "wss://enatega-singlevendor.up.railway.app/graphql",
2023-03-20 10:17:25 +00:00
},
};
2023-03-24 09:26:45 +00:00
const getEnvVars = (env = Constants.manifest) => {
2023-03-20 10:17:25 +00:00
// What is __DEV__ ?
// This variable is set to true when react-native is running in Dev mode.
// __DEV__ is true when run locally, but false when published.
// eslint-disable-next-line no-undef
if (__DEV__) {
return ENV.development;
} else if (env === "production") {
return ENV.production;
} else {
return ENV.production;
}
};
export default getEnvVars;