mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
ab4f2210d1
* Add the API documentation * Apply fixes from StyleCI (#871)
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'),
|
|
|
|
],
|
|
];
|