Issue Resolved
Issue #15 closed: Support health check configuration on application creation
Feature Request
Allow health check settings to be configured when creating applications via the package.
Suggested API
Coolify::applications()->create([
'name' => 'my-app',
// ... existing params
'health_check_enabled' => true,
'health_check_path' => '/up',
'health_check_method' => 'GET',
'health_check_return_code' => 200,
]);
Use Case
Laravel 11+ ships with a /up health check route by default. It would be convenient to configure this automatically when deploying Laravel apps via the package.