resolved conflicts

This commit is contained in:
rajesh
2024-08-21 20:48:06 +05:30
12 changed files with 51 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
# DataSource Configuration
spring.datasource.url=jdbc:postgresql://dbstaging.memento.credit:20184/gepaDb
spring.datasource.username=usergepa
spring.datasource.password=vs1pAc9vu07mMcdx93j6WiBS
spring.datasource.driver-class-name=org.postgresql.Driver
# JPA Configuration
spring.h2.console.enabled=true

View File

@@ -0,0 +1,8 @@
# DataSource Configuration
spring.datasource.url=jdbc:postgresql://localhost:5432/gepafin_local
spring.datasource.username=postgres
spring.datasource.password=root
spring.datasource.driver-class-name=org.postgresql.Driver
# JPA Configuration
spring.jpa.show-sql=true

View File

@@ -0,0 +1,7 @@
# DataSource Configuration
spring.datasource.url=jdbc:h2:mem:db;DB_CLOSE_DELAY=-1
spring.datasource.username=sa
spring.datasource.password=sa
# JPA Configuration
spring.h2.console.enabled=true

View File

@@ -1,29 +1,28 @@
spring.application.name=tendermanagement
springdoc.api-docs.path=/v1/api-docs
springdoc.swagger-ui.configUrl=/v1/api-docs
springfox.documentation.swagger-ui.path=/v1/api-docs
springdoc.swagger-ui.disable-swagger-default-url=true
springdoc.swagger-ui.path=/swagger-ui.html
# DataSource Configuration
spring.datasource.url=jdbc:postgresql://localhost:5432/gepafin_local
spring.datasource.username=postgres
spring.datasource.password=root
spring.datasource.driver-class-name=org.postgresql.Driver
# Multipart Configuration
spring.servlet.multipart.max-file-size=50MB
spring.servlet.multipart.max-request-size=50MB
spring.profiles.active=testing
# JPA Configuration
spring.jpa.properties.hibernate.default_schema=gepafin_schema
spring.jpa.hibernate.ddl-auto=none
spring.jpa.show-sql=false
# Liquibase Configuration
spring.liquibase.change-log=classpath:db/changelog/db.changelog-master.xml
spring.liquibase.default-schema=gepafin_schema
spring.liquibase.enabled=true
spring.liquibase.enabled=true
# Swagger Configuration
springdoc.api-docs.path=/v1/api-docs
# Debugging and SQL Output
logging.level.org.springframework.boot.autoconfigure.liquibase=ERROR
logging.level.liquibase=ERROR
# JWT configuration
# Ensure these values match your expectations
security.authentication.jwt.secret=my-secret-token-to-change-in-prod-environment-your-super-secure-randomly-generated-key
@@ -32,4 +31,3 @@ security.authentication.jwt.token-validity-in-seconds=86400
spring.main.allow-circular-references=true