Mobile App Config

//react native project/ config.js

1. ConnectCube

We are using ConnectCube for the chat and video call service. please create an account in ConnectCube and change the ConnectCube config.

https://connectycube.com/signup/

export const CC_CREDENTIALS = {
    appId: ****,
    authKey: '**********',
    authSecret: '**********'
};

//react native project folder / config.js

2. API Config

Please find your API_URL from heroku hosting and change the API_URL in config file.

export const API_URL = "http://127.0.0.1:3333"; 

Last updated