Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: '3.7'
services:
postgres:
image: postgres:10.5
restart: always
environment:
- POSTGRES_DB=keploy-test
- POSTGRES_USER=keploy-user
- POSTGRES_PASSWORD=keploy
ports:
- '5439:5432'
volumes:
# - ./postgres-data:/var/lib/postgresql/data
# copy the sql script to create tables
- ./src/main/resources/data.sql:/docker-entrypoint-datadb.d/data.sql
Binary file added src/main/resources/AllTestPass_inner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/OneFail-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/OneFail-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/OneFail-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring.datasource.url=jdbc:postgresql://localhost:5432/employees
spring.datasource.username=postgres
spring.datasource.password=gkr2000
spring.datasource.url=jdbc:postgresql://localhost:5439/keploy-test
spring.datasource.username=keploy-user
spring.datasource.password=keploy
spring.jpa.show-sql=true
## Hibernate Properties
# The SQL dialect makes Hibernate generate better SQL for the chosen database
Expand All @@ -11,5 +11,5 @@ spring.jpa.hibernate.ddl-auto=create
# in order to populate some initial data for testing mark it as true.
spring.jpa.defer-datasource-initialization=true
spring.sql.init.mode=always
server.port=8090
server.port=8080
logging.level.root=INFO
8 changes: 4 additions & 4 deletions target/classes/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring.datasource.url=jdbc:postgresql://localhost:5432/employees
spring.datasource.username=postgres
spring.datasource.password=gkr2000
spring.datasource.url=jdbc:postgresql://localhost:5439/keploy-test
spring.datasource.username=keploy-user
spring.datasource.password=keploy
spring.jpa.show-sql=true
## Hibernate Properties
# The SQL dialect makes Hibernate generate better SQL for the chosen database
Expand All @@ -11,5 +11,5 @@ spring.jpa.hibernate.ddl-auto=create
# in order to populate some initial data for testing mark it as true.
spring.jpa.defer-datasource-initialization=true
spring.sql.init.mode=always
server.port=8090
server.port=8080
logging.level.root=INFO
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed target/classes/com/example/demo/model/Employee.class
Binary file not shown.
Binary file removed target/classes/com/example/demo/model/Fresher.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
21 changes: 0 additions & 21 deletions target/classes/data.sql

This file was deleted.

Binary file removed target/classes/lib/jacocoagent.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions target/maven-archiver/pom.properties

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

201 changes: 0 additions & 201 deletions target/newrelic/LICENSE

This file was deleted.

Loading