Stu Mason
Stu Mason

Activity

Issue Resolved

Issue #61 closed: Add health check configuration support to application create/update

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.