Your configuration file contains 3 validation errors that must be fixed before proceeding.
Validation errors:
database.port
Must be a number between 1 and 65535
api.timeout
Required field is missing
cache.maxSize
Value exceeds maximum allowed size of 1000MB
config.json
{
"database": {
"port": "invalid", // Should be a number
"host": "localhost"
},
"api": {
// "timeout": 5000, // Missing required field
"retries": 3
},
"cache": {
"maxSize": 2000 // Exceeds 1000MB limit
}
}Next steps: