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
You can use the application generator tool [Node.js Express generator](https://expressjs.com/en/starter/generator.html) to quickly create a Node.js application skeleton.
24
24
25
25
Before that, create a new directory for your project:
26
-
```
26
+
```shell
27
27
mkdir multitenancy-kyma-tutorial
28
28
```
29
29
30
30
Under the `multitenancy-kyma-tutorial` directory, create your own Node.js Application.
31
31
32
32
**Option 1**: Run the application generator to create application skeleton with single one `npx` command (available in Node.js 8.2.0):
**Option 2**: Run the application generator to create application skeleton with command `npm` and `express`, by this way, packages will be saved locally as well.
38
38
39
39
Install the tool:
40
40
41
-
```
41
+
```shell
42
42
npm install -g express-generator
43
43
```
44
44
45
45
> Package `express` is installed together.
46
46
47
47
Verify if you have successfully installed the tool:
You can find the final Node.js project from repository: [here](https://github.com/SAP-samples/btp-kyma-runtime-multitenancy-tutorial/tree/main/Mission:%20Develop%20a%20Node.js%20Application%20in%20the%20SAP%20BTP%20Kyma%20Runtime).
142
+
You can find the final Node.js project from [here](https://github.com/SAP-samples/btp-kyma-runtime-multitenancy-tutorial/tree/main/Mission:%20Develop%20a%20Node.js%20Application%20in%20the%20SAP%20BTP%20Kyma%20Runtime).
@@ -118,15 +118,15 @@ Create a new namespace through the Kyma dashboard or `kubectl` CLI, for example,
118
118
119
119
Since the OCI image is stored in your Docker hub, you need to provide the access information to your Kyma cluster that you can pull the images from those repositories:
0 commit comments