@eventmodelers/cli 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<modelVersion>4.0.0</modelVersion>
|
|
5
5
|
<groupId>io.axoniq.quickstart</groupId>
|
|
6
6
|
<artifactId>quickstart</artifactId>
|
|
7
|
-
<name>Axoniq
|
|
7
|
+
<name>Axoniq Quickstart</name>
|
|
8
8
|
<version>0.0.1-SNAPSHOT</version>
|
|
9
9
|
|
|
10
10
|
<properties>
|
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
21
21
|
</dependency>
|
|
22
22
|
|
|
23
|
+
|
|
24
|
+
|
|
23
25
|
<!-- Read model persistence: Spring Data JPA + PostgreSQL, default for all projections -->
|
|
24
26
|
<dependency>
|
|
25
27
|
<groupId>org.springframework.boot</groupId>
|
|
@@ -43,6 +45,14 @@
|
|
|
43
45
|
<artifactId>axoniq-platform-spring-boot-starter</artifactId>
|
|
44
46
|
</dependency>
|
|
45
47
|
|
|
48
|
+
<!-- Auto-starts docker-compose.yml services (e.g. postgres) on app run -->
|
|
49
|
+
<dependency>
|
|
50
|
+
<groupId>org.springframework.boot</groupId>
|
|
51
|
+
<artifactId>spring-boot-docker-compose</artifactId>
|
|
52
|
+
<scope>runtime</scope>
|
|
53
|
+
<optional>true</optional>
|
|
54
|
+
</dependency>
|
|
55
|
+
|
|
46
56
|
<!-- Testing -->
|
|
47
57
|
<dependency>
|
|
48
58
|
<groupId>org.springframework.boot</groupId>
|
|
@@ -1 +1,8 @@
|
|
|
1
|
-
spring.application.name=Platform QuickStart
|
|
1
|
+
spring.application.name=Platform QuickStart
|
|
2
|
+
|
|
3
|
+
spring.datasource.url=jdbc:postgresql://localhost:5432/quickstart
|
|
4
|
+
spring.datasource.username=quickstart
|
|
5
|
+
spring.datasource.password=quickstart
|
|
6
|
+
|
|
7
|
+
spring.docker.compose.enabled=true
|
|
8
|
+
spring.docker.compose.file=docker-compose.yml
|