How can we help?
Table of Contents
< All Topics
Print

Configure the UI

Configurations

Here we will illustrate the types of configurations available for Paladin Cloud Community Edition and how it will impact the application.

Required

  • Feature modules visibility: Each feature module can be configured to be displayed or hidden as needed.
    featureModules: {
        COMPLIANCE_MODULE: true, // Expected values: true || false. // Set value as false to hide the module
        ASSETS_MODULE: true, // Expected values: true || false. // Set value as false to hide the module
        OMNI_SEARCH_MODULE: true, // Expected values: true || false. // Set value as false to hide the module
        TOOLS_MODULE: false, // Expected values: true || false. // By default this module is not shown as there is no content added for this
        ADMIN_MODULE: true, // Expected values: true || false. // Set value as false to hide the module
    }
  • Cloud domains: Production, staging and dev environment domains can be configured here
    domains: {
        PROD_BASE_URL: '', // Expected values: domain where the API is deployed, ex: http://pacbot.com/api here
        STG_BASE_URL: '', // Expected values: domain where the API is deployed, ex: http://stg.pacbot.com/api here
        DEV_BASE_URL: '' // Expected values: domain where the API is deployed, ex: http://dev.pacbot.com/api here
    }