This commit is contained in:
pratik
2025-10-20 12:25:03 -05:00
parent 0dae94011c
commit 0e9bdfa3cc
7 changed files with 45 additions and 35 deletions

View File

@@ -0,0 +1,20 @@
# Server Configuration
server.port=8080
# Application Name
spring.application.name=cf-deployer
# Multipart Configuration
spring.servlet.multipart.max-file-size=500MB
spring.servlet.multipart.max-request-size=500MB
spring.servlet.multipart.enabled=true
# Cloud Foundry CLI Configuration
cf.cli.timeout=600
cf.cli.path=
# Logging Configuration
logging.level.root=INFO
logging.level.com.cfdeployer=DEBUG
logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} - %msg%n
logging.pattern.file=%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n

View File

@@ -1,24 +0,0 @@
server:
port: 8080
spring:
application:
name: cf-deployer
servlet:
multipart:
max-file-size: 500MB
max-request-size: 500MB
enabled: true
cf:
cli:
timeout: 600
path:
logging:
level:
root: INFO
com.cfdeployer: DEBUG
pattern:
console: "%d{yyyy-MM-dd HH:mm:ss} - %msg%n"
file: "%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n"