Skip to content

Commit

Permalink
Merge pull request #242 from SwissBorg/update/docs
Browse files Browse the repository at this point in the history
Update docs for v0.5.0-M6 release
  • Loading branch information
tiagomota authored Jan 3, 2022
2 parents c131574 + 2fa8bc3 commit e6a78a8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ You can read more about DAOs and schema variants in [the official documentation]
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:

```scala
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M4"
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M6"
```

For a maven project add:
```xml
<dependency>
<groupId>com.swissborg</groupId>
<artifactId>akka-persistence-postgres_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down Expand Up @@ -130,14 +130,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
##### Add akka-persistence-migration to your project
Add the following to your `build.sbt`
```
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
```
For a maven project add:
```xml
<dependency>
<groupId>com.swisborg</groupId>
<artifactId>akka-persistence-postgres-migration_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ The main goal is to keep index size and memory consumption on a moderate level w
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:

```scala
libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M4"
libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M6"
```

For a maven project add:
```xml
<dependency>
<groupId>com.swisborg</groupId>
<artifactId>akka-persistence-postgres_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down
4 changes: 2 additions & 2 deletions docs/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
#### Add akka-persistence-migration to your project
Add the following to your `build.sbt`
```
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
```
For a maven project add:
```xml
<dependency>
<groupId>com.swisborg</groupId>
<artifactId>akka-persistence-postgres-migration_2.13</artifactId>
<version>0.5.0-M4</version>
<version>0.5.0-M6</version>
</dependency>
```
to your `pom.xml`.
Expand Down
21 changes: 12 additions & 9 deletions scripts/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
postgres:
image: postgres:latest
container_name: postgres
environment:
- "TZ=Europe/Amsterdam"
- "POSTGRES_USER=docker"
- "POSTGRES_PASSWORD=docker"
ports:
- "5432:5432" # credentials (docker:docker)
version: "3"

services:
postgres:
image: postgres:latest
container_name: postgres
environment:
- "TZ=Europe/Amsterdam"
- "POSTGRES_USER=docker"
- "POSTGRES_PASSWORD=docker"
ports:
- "5432:5432" # credentials (docker:docker)

0 comments on commit e6a78a8

Please sign in to comment.