#LaravelCloud Deploy and Save Filament

3 messages · Page 1 of 1 (latest)

verbal eagle
#

Hello everyone,
I created a new application, selected the "laravel" template, and specified an empty GitHub repo.
Then, I connected a MySQL database to the environment and deployed it.
I then ran the following commands:

  • composer require filament/filament:"^3.3" -W
    and
  • php artisan filament:install --panels
    How can I update my GitHub repo so that Filamente is already present when I restart?
livid gulch
#

You cannot commit from a cloud application. Cloud uses zero downtime deployments, thus the directory the application sits in, isn't a git repo. Best thing to do, is to do the same thing locally, and then commit it to the repo.

verbal eagle
#

And for example, to create a user with command: php artisan make:filament-user that is interactive?