Skip to content
Advertisement

Deploying Laravel app to Google App Engine

I am trying to deploy my Laravel 7.29.3 app to Google App Engine Standard environment. I have followed the guided located here https://cloud.google.com/community/tutorials/run-laravel-on-appengine-standard. However, I get a View[Welcome] not found error when I view my deployment. My app.yaml file looks like below:

JavaScript

Its a very simple yaml file as I am only using the welcome view and a route to a contact page. Please note that I am not using any database in this version. Please see my routing below:

JavaScript

I also reviewed this question here: View [welcome] not found but I am still getting the same error. From my understanding of @sllopis comment, I need to put my welcome.blade.php file in a layouts folder. I have done that, and still get the same error. Any assistance would be appreciated.

Thanks

Advertisement

Answer

I have found the solution. First you can add handlers to your app.yaml file. It should look like below:

JavaScript

Source: https://stackoverflow.com/a/57822141/2251229

Then you can update your config/filesystems.php file. You can add a new file system as per the sample provided below.

JavaScript

And then update your default file system like so:

JavaScript

Install the Laravel Google Cloud Storage package using the below command:

JavaScript

Source: https://stackoverflow.com/a/57177913/2251229

From here you can do your gcloud app deploy, and gcloud app browse. If you get further errors, do php artisan config:clear. This should clear any cached configurations.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement