patch config for production

This commit is contained in:
Sorrel Bri 2020-01-18 00:38:02 -08:00 committed by sorrelbri
parent a9a10c1adb
commit 6f86007632

View file

@ -2,15 +2,17 @@ import runtimeEnv from '@mars/heroku-js-runtime-env';
const env = runtimeEnv();
const production = {
apiAddress: 'https://node-go-api.herokuapp.com',
endpoint: 'https://play-node-go.herokuapp.com'
apiAddress: 'https://node-go-api.herokuapp.com/api/v1',
endpoint: 'https://play-node-go.herokuapp.com',
authAddress: 'https://play-node-go.herokuapp.com',
socketAddress: 'https://node-go-api.herokuapp.com'
}
const development = {
authAddress: 'http://localhost:8000/auth',
apiAddress: 'http://localhost:8000/api/v1',
socketAddress: 'http://localhost:8000',
endpoint: 'http://localhost:3000'
authAddress: 'http://localhost:8000/auth',
endpoint: 'http://localhost:3000',
socketAddress: 'http://localhost:8000'
}
const config = env.REACT_APP_ENVIRONMENT === 'production'