feat: Integrate Ansible playbooks into CI/CD workflows
- Add deploy-application-code.yml for Git-based code deployment - Add install-composer-dependencies.yml for dependency installation - Add deploy-image.yml for Docker image deployment - Update build-image.yml to use Ansible playbooks - Update manual-deploy.yml to use Ansible playbooks - Add ANSIBLE_VAULT_PASSWORD secret handling
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Framework\ExceptionHandling;
|
||||
|
||||
interface ErrorHandlerInterface
|
||||
{
|
||||
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Framework\ExceptionHandling\Renderer;
|
||||
|
||||
use App\Framework\ExceptionHandling\ErrorRenderer;
|
||||
|
||||
final class HtmlErrorRenderer implements ErrorRenderer
|
||||
{
|
||||
public function render(): void
|
||||
{
|
||||
echo '<html lang="en"><body><h1>500 Internal Server Error</h1></body></html>';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Framework\ExceptionHandling;
|
||||
|
||||
interface ShutdownHandlerInterface
|
||||
{
|
||||
public function handle(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user