Home > OS >  WSO2: Is there a way to customize devportal and publisher in source code?
WSO2: Is there a way to customize devportal and publisher in source code?

Time:10-30

I downloaded the WSO2 API Manager source code, and I want to customize some of .jsx files that it has. But there aren't any .jsx files. I know that there is a way to customize devportal and publisher but, I want to work on its source code. What's the problem?

CodePudding user response:

You can find the source files in the APIM zip file. If you go to the location wso2am-4.1.0/repository/deployment/server/jaggeryapps, you can find the portals such as publisher, admin and devportal.

If you go to the location wso2am-4.1.0/repository/deployment/server/jaggeryapps/devportal/source/src, then you can find the devportal source code.

If you want to override you can place the relevant files in wso2am-4.1.0/repository/deployment/server/jaggeryapps/devportal/override/src. Then it will override the existing portal UI.

More information can be found in [1].

[1] - https://apim.docs.wso2.com/en/latest/reference/customize-product/customizations/advanced-ui-customization/#advanced-ui-customization

  • Related