17 lines
359 B
Plaintext
17 lines
359 B
Plaintext
<?php
|
|
return [
|
|
'db' => [
|
|
'host' => '127.0.0.1',
|
|
'port' => 3306,
|
|
'name' => 'photo_gallery',
|
|
'user' => 'gallery_user',
|
|
'pass' => 'change_me',
|
|
'charset' => 'utf8mb4',
|
|
],
|
|
'deploy' => [
|
|
'branch' => 'main',
|
|
'script' => __DIR__ . '/scripts/deploy.sh',
|
|
'php_bin' => 'php',
|
|
],
|
|
];
|