更改启动脚本
Some checks failed
Build Docker / build (push) Has been cancelled

This commit is contained in:
想打瞌睡 2025-02-18 18:26:21 +08:00
parent 1a1a642ee9
commit 8488186496
3 changed files with 25 additions and 10 deletions

23
.watcher.php Normal file
View File

@ -0,0 +1,23 @@
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
use Hyperf\Watcher\Driver\ScanFileDriver;
return [
'driver' => ScanFileDriver::class,
'bin' => PHP_BINARY,
'watch' => [
'dir' => ['app', 'config'],
'file' => ['.env'],
'scan_interval' => 2000,
],
'ext' => ['.php', '.env'],
];

View File

@ -12,6 +12,8 @@ declare(strict_types=1);
namespace App\Controller;
use Hyperf\HttpServer\Annotation\AutoController;
class IndexController extends AbstractController
{
public function index()

View File

@ -1,10 +0,0 @@
#!/bin/bash
# Check if vendor directory exists
if [ ! -d "/opt/www/vendor" ]; then
# Run composer install if vendor directory does not exist
composer install
fi
# Run Hyperf application
php bin/hyperf.php "$@"