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
Spring CLI integration with a project catalog to help you create Spring Boot projects using Oracle and [Oracle Backend for Microservices and AI](https://bit.ly/OracleAI-microservices).
4
+
5
+
## Install Spring CLI
6
+
7
+
The goal of the Spring CLI is to increase your productivity when you create new projects and when you add functionality to existing projects. [Spring CLI documentation](https://docs.spring.io/spring-cli/reference/index.html) describes how to install the CLI on various platforms.
8
+
3
9
## Add to Spring CLI
4
10
5
-
## Build a project
11
+
Execute the following command to add the `project-catalog` for [Oracle Backend for Microservices and AI](https://bit.ly/OracleAI-microservices).
12
+
13
+
```shell
14
+
spring add.....
15
+
```
16
+
17
+
The Spring CLI is now aware of the [Oracle Backend for Microservices and AI](https://bit.ly/OracleAI-microservices) integration so when building a new project (or adding to a current one) you can use the command `spring .....`
18
+
19
+
## Run the Spring CLI application locally
20
+
21
+
To run the application locally you need access to an Oracle Database (remotly or locally). Create a shell script with the following content called `run-app.sh`
22
+
23
+
```shell
24
+
#!/bin/bash
25
+
export
26
+
export
27
+
export
28
+
29
+
mvn spring-boot:run
30
+
```
31
+
32
+
Execute the shell script running the following command:
0 commit comments