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
- update spring boot version to 2.2.2;
- add username and password for mysql and mongo;
- replace docker-compose service mongo:4.2.1 to bitnami/mongo:4.2.1 (image used by the helm chart stable/mongodb);
- create a specific file for mongo configuration;
- remove author-book-api and book-review-api from docker-compose and create a script to start them;
- update README.
Copy file name to clipboardexpand all lines: README.md
+32-30
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,12 @@ If you want to see the complete communication frontend-backend using `GraphQL`,
26
26
27
27
## Build Docker Images
28
28
29
-
In a terminal and inside `springboot-graphql-databases` root folder, run the following `./mvnw` commands to build the applications docker images
29
+
In a terminal and inside `springboot-graphql-databases` root folder, in order to build the applications docker images, you can just run the following script
30
+
```
31
+
./build-apps.sh
32
+
```
33
+
34
+
Or manually run the following `./mvnw` commands for each application
30
35
31
36
### author-book-api
32
37
@@ -66,31 +71,40 @@ Wait a little bit until all containers are Up (healthy). You can check their sta
Open a terminal and inside `springboot-graphql-databases` root folder run following script
77
+
```
78
+
./start-apps.sh
79
+
```
76
80
77
81
## Running applications with Maven
78
82
79
-
During development, it is better to just run the applications instead of always build their docker images before running them. In order to do that, comment the application(s) in `docker-compose.yml` file (so that they do not start when you start the environment) and run them with Maven.
83
+
During development, it is easier to just run the applications instead of always build the docker images and run them. For it, inside `springboot-graphql-databases`, run the following Maven commands in different terminals
- study how to implement authentication/authorization to `GraphQL` endpoint;
247
266
- implement `graphql` subscription;
248
-
- Fix Automatic index creation
249
-
```
250
-
WARN [book-review-api,,,] 1 --- [ main] .m.c.i.MongoPersistentEntityIndexCreator : Automatic index creation will be disabled by default as of Spring Data MongoDB 3.x.
251
-
Please use 'MongoMappingContext#setAutoIndexCreation(boolean)' or override 'MongoConfigurationSupport#autoIndexCreation()' to be explicit.
252
-
However, we recommend setting up indices manually in an application ready block. You may use index derivation there as well.
0 commit comments