Skip to Main Content
Feature Request FR-3437
Product Area APIs
Status CLOSED

8 Voters

Enhance Remote Deployment to Deploy Page/Components

stephen cloete Public
· Oct 18 2023

Idea Summary
Providing the ability to Remote Deploy at Page and Component Level to perform incremental application updates instead of only overriding the entire application

Use Case
Can be used within a CICD Pipeline to better control release through an Application SDLC

Preferred Solution (Optional)
Provide an Option to Deploy at Application Level or Page/Component Level

This is a great idea! You can already achieve this in APEX today with a slightly different approach.

Comments

Comments

  • stebin.figurez OP 1.7 years ago

    I'd like to enhance this CI/CD pipeline, and achieving this in VBS is possible. However, the current flow involves replacing the entire application using liquibase commands. It would be even better and more efficient if there were a way to deploy just the changes to the target application.

  • jayson hanes Admin OP 1.7 years ago

    could anyone enlighten me as to why there are concerns in replacing the entire application every time? Aside from perhaps the time it takes to replace the whole app vs a single page, what aspect of this is concerning or motivating?

  • carsten.czarski APEX Team OP 1.6 years ago

    If you have a newer ORDS version in use (23.1) or later, you can make use of the REST APIs within ORDS to deploy APEX applications or application components. These APIs support importing as well as exporting full applications or application components - all over REST.

    https://blogs.oracle.com/apex/post/oracle-apex-app-deployments-made-easy-use-the-ords-rest-apis

    With this, you can have all of your deployment using REST calls (e.g. “curl”), and you can integrate into everything.