You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ACCORDION-BEGIN [Step 1: ](Add Authorization and Trust Management service (XSUAA))]
40
-
The next step is to add the Authorization and Trust Management service to `values.yaml` to allow user login, authorization, and authentication checks. Open the `chart/values.yaml` file and add the following snippet:
40
+
The next step is to add the Authorization and Trust Management service to `values.yaml` to allow user login, authorization, and authentication checks.
41
+
42
+
Open the `chart/values.yaml` file and add the following snippet:
41
43
42
44
43
45
```YAML[9-17]
@@ -75,9 +77,9 @@ You need to set the environment variable for the container registry.
75
77
76
78
1. Open a terminal and run the following command:
77
79
78
-
```
79
-
CONTAINER_REGISTRY=<Container Registry>
80
-
```
80
+
```Shell/Bash
81
+
CONTAINER_REGISTRY=<Container Registry>
82
+
```
81
83
82
84
2. Refer to [Configure Container Image](btp-app-#configure-container-image) for details on finding `<Container Registry>`.
83
85
@@ -87,16 +89,17 @@ You need to set the environment variable for the container registry.
87
89
[ACCORDION-BEGIN [Step 3: ](CAP build)]
88
90
1. Execute the following command in your project folder:
89
91
90
-
```Shell/Bash
91
-
cds build --production
92
-
```
93
-
You should get an output like: `[cds] - build completed in XXX ms`.
92
+
```Shell/Bash
93
+
cds build --production
94
+
```
94
95
95
-
1. (Optional) Run the following command to remove the test data:
96
+
You should get an output like: `[cds] - build completed in XXX ms`.
96
97
97
-
```
98
-
rm -rf gen/db/data
99
-
```
98
+
2. (Optional) Run the following command to remove the test data:
99
+
100
+
```Shell/Bash
101
+
rm -rf gen/db/data
102
+
```
100
103
101
104
> Although the app will work with the test data, usually test data should be removed before deployment.
102
105
@@ -108,35 +111,35 @@ You need to set the environment variable for the container registry.
0 commit comments