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
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 51s
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user