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
OS: Linux 5.10.102.1-microsoft-standard-WSL2 amd64
109
110
```
110
111
112
+
## Spring CLI for project creation
113
+
114
+
You can create projects with [Spring CLI](https://spring.io/projects/spring-cli). To use this
115
+
feature, install Spring CLI following the instructions provided in that repository, and then
116
+
import the Oracle Project Catalog as follows:
117
+
118
+
```bash
119
+
spring project catalog add --name oracle --url https://github.com/oracle/spring-cloud-oci/tree/obaas-starter/database/spring-cli/catalog
120
+
```
121
+
122
+
To create a new project, for example called `test2` with specific Maven group and artifact IDs,
123
+
use a command similar to this, substituting your desired coordinates:
124
+
125
+
```bash
126
+
spring boot new --name test2 --from obaas --group-id com.example --artifact-id test2 --version 0.0.1
127
+
```
128
+
129
+
Review the `README` file in the created project for details of next steps.
130
+
131
+
111
132
## Oracle Database in a container for local testing
112
133
113
134
If you want to run an instance of Oracle Database locally for development and testing, then Oracle recommends Oracle Database 23c Free. You can start the database in a container with this
0 commit comments