API URLs

// Development
const DEV_CONFIG = {
  baseUrl: 'https://b2b-api.dev-riseworks.io'
};

// Staging
const STAGING_CONFIG = {
  baseUrl: 'https://integrations-api.staging-riseworks.io'
};

// Production
const PROD_CONFIG = {
  baseUrl: 'https://integrations-api.riseworks.io'
};

Web URLs

// Development
const DEV_WEB_CONFIG = {
  webUrl: 'https://dev-app.riseworks.dev/'
};

// Staging
const STAGING_WEB_CONFIG = {
  webUrl: 'https://app.staging-riseworks.io/'
};

// Production
const PROD_WEB_CONFIG = {
  webUrl: 'https://app.riseworks.io/'
};