@sap-ux/cf-deploy-config-writer
v0.3.41
Published
Add or amend Cloud Foundry and ABAP deployment configuration for SAP projects
Readme
@sap-ux/cf-deploy-config-writer
Add or amend Cloud Foundry deployment configuration to SAP projects.
Prerequisites
- For CAP Projects the CDS binary is required, for more information refer to the CDS Tool
- For HTML5 Projects the MTA binary is required, for more information refer to the MTA Tool, this is required to support the mta-lib library which handles the flows for interacting with the
mta.yamlconfiguration.
Installation
Npm
npm install --save @sap-ux/cf-deploy-config-writer
Yarn
yarn add @sap-ux/cf-deploy-config-writer
Pnpm
pnpm add @sap-ux/cf-deploy-config-writer
Example: Reading and Writing MTA Configurations
Generate an MtaConfig instance to read an mta.yaml configuration to allow you to append different resources and modules. For example HTML5 resources, routing modules or append mta extension configurations.
Dependent on the MTA Tool being installed globally on your dev space.
- For VSCode, run the command
npm i -g mta - For Business Application Studio, the binary is already installed
import { MtaConfig } from '@sap-ux/cf-deploy-config-writer';
// Create a new instance of MtaConfig
const mtaConfig = await MtaConfig.newInstance('path/to/mta.yaml');
// Carry out some operations...
// 1. Add routing modules and also add managed approuter configuration
await mtaConfig.addRoutingModules(true);
// 2. Add new HTML5 app
await mtaConfig.addApp('myui5app', './');
// 3. Append a destination instance to the destination service, required by consumers of CAP services (e.g. approuter, destinations)
await mtaConfig.appendInstanceBasedDestination('mynewdestination');
// 4. Append mta extension configuration
await mtaConfig.addMtaExtensionConfig('mynewdestination', 'https://my-service-url.base', {
key: 'ApiKey',
value: `${apiHubKey}`
});
// 5. Save changes
await mtaConfig.save();Example: Appending a Managed Approuter Configuration to an SAP Fiori UI5 Application
Calling the generateAppConfig function to append Cloud Foundry configuration to a HTML5 application, assumes manifest.json and ui5.yaml configurations are present otherwise the process will exit with an error;
import { generateAppConfig, DefaultMTADestination } from '@sap-ux/cf-deploy-config-writer'
import { join } from 'path';
const exampleWriter = async () => {
const ui5AppPath = join(__dirname, 'testapp');
// Option 1. Append managed approuter configuration, toggle `addManagedAppRouter` to false to ommit the managed approuter configuration being appended to the mta.yaml
const fs = await generateAppConfig({appPath: ui5AppPath, addManagedAppRouter: true, destinationName: 'SAPBTPDestination'});
return new Promise((resolve) => {
fs.commit(resolve); // When using with Yeoman it handle the fs commit.
});
}
// Calling the function
await exampleWriter();Example: Generate or Append a Managed Approuter Configuration to a SAP Fiori UI5 Application
Calling the generateAppConfig function to append Cloud Foundry configuration to a HTML5 application;
- Assumes
manifest.jsonandui5.yamlconfigurations are present in the target folder - Supports
CAPprojects where an existingmta.yamlis already present and you are adding a SAP Fiori UI5 app to it
import { generateAppConfig, DefaultMTADestination } from '@sap-ux/cf-deploy-config-writer'
import { join } from 'path';
const exampleWriter = async () => {
const ui5AppPath = join(__dirname, 'testapp');
// Option 1. Append managed approuter configuration, toggle `addManagedAppRouter` to false to ommit the managed approuter configuration being appended to the mta.yaml
const fs = await generateAppConfig({appPath: ui5AppPath, addManagedAppRouter: true, destinationName: 'SAPBTPDestination'});
// Option 2. For CAP flows, set the destination to DefaultMTADestination to create a destination instance between the HTML5 app and CAP Project
const fs = await generateAppConfig({appPath: ui5AppPath, addManagedAppRouter: true, destinationName: DefaultMTADestination});
return new Promise((resolve) => {
fs.commit(resolve); // When using with Yeoman it handle the fs commit.
});
}
// Calling the function
await exampleWriter();Example: Generate a Base Managed | Standard Approuter Configuration
Calling the generateBaseConfig function to generate a new Cloud Foundry configuration, supporting Managed | Standard configurations;
- Creates a new
mta.yamlinto the specifiedmtaPath, it will fail if an existingmta.yamlis found - Optional parameters include adding a
connectivityservice if the SAP BTP destination is using anOnPremiseconfiguration - New configuration will include a destination instance to expose a
UI5endpoint, consumed by SAP Fiori applications when deployed to Cloud Foundry
import { generateBaseConfig, RouterModuleType } from '@sap-ux/cf-deploy-config-writer'
import { join } from 'path';
const exampleWriter = async () => {
const mtaPath = join(__dirname, 'testproject');
// If your SAPUI5 application will be consuming an SAB BTP OnPremise destination, Connectivity serivce is required; Refer to https://discovery-center.cloud.sap/serviceCatalog/connectivity-service?region=all
const addConnectivityService = true;
// Generate an approuter configuration, with the default being a Managed Approuter, toggle the routerType to genereate RouterModuleType.AppFront or RouterModuleType.Standard configurations
const fs = await generateBaseConfig({ mtaId: 'mymtaproject', routerType: RouterModuleType.Managed, mtaPath, addConnectivityService });
return new Promise((resolve) => {
fs.commit(resolve); // When using with Yeoman it handle the fs commit.
});
}
// Calling the function
await exampleWriter();Example: Generate a CAP Managed | AppFront | Standard Approuter Configuration
Calling the generateCAPConfig function to generate a new Cloud Foundry configuration, supporting Managed | AppFront | Standard configurations;
- Generate a CAP
mta.yamlwithdestination,HTML5-RepoandXSUAAservices added by default - To align the
package.jsonandpackage-lock.jsonto support the mta prebuild scriptnpm ci, you need to execute thenpm install - New configuration will include destination instances to expose
UI5andCAPendpoints, consumed by SAP Fiori applications when deployed to Cloud Foundry
import { generateCAPConfig, RouterModuleType } from '@sap-ux/cf-deploy-config-writer'
import { join } from 'path';
const exampleWriter = async () => {
const mtaPath = join(__dirname, 'testcapproject');
// Generate an approuter configuration, with the default being a Managed Approuter, toggle the routerType to genereate RouterModuleType.AppFront or RouterModuleType.Standard configurations
const fs = await generateCAPConfig({ mtaId: 'mymtaproject', routerType: RouterModuleType.Managed, mtaPath });
return new Promise((resolve) => {
fs.commit(resolve); // When using with Yeoman it handle the fs commit.
});
}
// Calling the function
await exampleWriter();Additional Information
- When appending Cloud Foundry deployment configuration to a HTML5 application that is missing a backend
pathinui5.yaml, or there is nodataSourcesdefined inmanifest.json, thexs-app.jsonrouting is appended with'<apply-service-segment-path>'. This is to allow you to append a custom service path if you introduce custom AJAX calls or add a new OData service.
For example, the following configuration will be appended to the xs-app.json routing list:
{
"source": "^<apply-service-segment-path>/(.*)$",
"target": "<apply-service-segment-path>/$1",
"destination": "mydestination",
"authenticationType": "xsuaa",
"csrfProtection": false
}Replace <apply-service-segment-path> with the actual service path you want to use, for example /sap or /myservice;
Keywords
SAP Fiori elements SAP UI5 SAP Deployment Cloud Foundry MTA Multi-Target Application CAP CDS
