fly-apps / fly-laravel

Run your Laravel apps on Fly
42 stars 3 forks source link

Users have to manually register the LaunchCommand in their AppServiceProvider's boot() method #19

Closed Johannes-Werbrouck closed 1 year ago

Johannes-Werbrouck commented 1 year ago

Users have to put if

($this->app->runningInConsole())
        {
            $this->commands([
                LaunchCommand::class,
            ]);
        }

In the boot() method of the AppServiceProvider to be able to run php artisan launch

KTanAug21 commented 1 year ago

Hi @Johannes-Werbrouck!

You've added instructions in the Read.me about aliasing the vendor/bin/fly-launch, here: https://github.com/fly-apps/fly-laravel/blob/main/README.md

Please close this issue if it's no longer needed to be looked into