mirror of
https://github.com/koel/koel
synced 2025-02-17 22:08:28 +00:00
25 lines
545 B
PHP
25 lines
545 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Deployment configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you can configure your deployment type.
|
|
| Right now, the only deployment type available is "git"
|
|
|
|
|
*/
|
|
'deployment' => [
|
|
|
|
'type' => 'git',
|
|
|
|
'repository' => '',
|
|
|
|
'branch' => 'gh-pages',
|
|
|
|
'message' => 'Site updated: '.strftime('%YYYY-%MM-%DD %HH:%mm:%ss'),
|
|
|
|
],
|
|
];
|