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
In addition, you need install and freeze dependencies for your UI applications:
762
-
```sh
763
-
npm i --prefix app/browse
764
-
npm i --prefix app/admin-books
765
-
```
766
-
767
-
**Build and deploy**:
768
754
769
755
::: code-group
770
756
771
757
```sh [Cloud Foundry]
772
-
mbt build -t gen --mtar mta.tar
773
-
cf deploy gen/mta.tar
758
+
cds up
774
759
```
775
760
776
761
```sh [Kyma]
777
-
# Omit `--push` flag for testing, otherwise `ctz`
778
-
# will push images to the specified repository
779
-
ctz containerize.yaml --push
780
-
helm upgrade --install bookshop ./chart
762
+
cds up --to k8s
781
763
```
782
764
783
765
:::
@@ -1049,10 +1031,11 @@ The Boolean values in the _mtx/sidecar/package.json_ activate the default config
1049
1031
1050
1032
### Additional Services
1051
1033
1052
-
If your CAP Javaapplication uses a service that isn't supported out of the box, you can add a custom dependency by providing a custom handler. Refer to [Define Dependent Services](../../java/multitenancy#define-dependent-services) for details.
1034
+
In **CAP Java**, if your application uses a service that isn't supported out of the box, you can define dependencies by providing a custom handler.
1053
1035
1036
+
[Learn more about defining dependent services](../../java/multitenancy#define-dependent-services){.learn-more}
1054
1037
1055
-
In Node.js, you can use the `subscriptionDependency` setting to provide a dependency configuration similar to the standard configuration shown before. Use your application's or CAP plugin's _package.json_:
1038
+
In **CAP Node.js**, you can use a custom `subscriptionDependency` entry in your application's or CAP plugin's _package.json_:
1056
1039
1057
1040
```json [package.json]
1058
1041
"cds": {
@@ -1068,7 +1051,6 @@ In Node.js, you can use the `subscriptionDependency` setting to provide a depend
1068
1051
1069
1052
Alternatively, overriding the [`dependencies`](./mtxs#get-dependencies) handler gives you full flexibility for any custom implementation.
0 commit comments