Fix YAML syntax by removing quotes from numeric values in JWT and S3 configuration
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 51s

This commit is contained in:
2025-10-25 09:30:31 +08:00
parent f63a14031c
commit 512db143fc

View File

@@ -5,7 +5,7 @@ Port: 8888
JWT:
Secret: "${JWT_SECRET}"
Issuer: "${JWT_ISSUER}"
ExpiresIn: "${JWT_EXPIRES_IN}"
ExpiresIn: ${JWT_EXPIRES_IN}
Database:
DSN: "${DATABASE_DSN}"
@@ -16,4 +16,4 @@ S3:
AccessKeyID: "${S3_ACCESS_KEY_ID}"
SecretAccessKey: "${S3_SECRET_ACCESS_KEY}"
Endpoint: "${S3_ENDPOINT}"
PresignedURLExpiration: "${S3_PRESIGNED_URL_EXPIRATION}"
PresignedURLExpiration: ${S3_PRESIGNED_URL_EXPIRATION}