https://github.com/ml-opensource/rdsmultiplereplica
Demonstrates how to implement replica delegation for backend projects.
https://github.com/ml-opensource/rdsmultiplereplica
Last synced: 12 months ago
JSON representation
Demonstrates how to implement replica delegation for backend projects.
- Host: GitHub
- URL: https://github.com/ml-opensource/rdsmultiplereplica
- Owner: ml-opensource
- Created: 2024-02-19T12:00:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T16:32:22.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T21:42:52.388Z (12 months ago)
- Language: Java
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Read Me First
Please make sure Docker nad Maven is provided in your system.
- Execute unit tests only
```
mvn clean -DskipITs=true verify
```
- Execute Integration Tests (IT) only
```
mvn clean -Dskip.unit.tests=true verify
```
- Execute both unit and integrations test
```
mvn clean install
```
or
- Run the application with PostgreSQL
```
docker run -d --name template_postgres -e POSTGRES_USER=templateUser -e POSTGRES_PASSWORD=templatePassword -e POSTGRES_DB=template -p 5435:5432 --restart=always postgres
```
- Start the application with
```
mvn spring-boot:run
```