Laravel 5 in google app engine - Error 13 Storage bucket

0

I'm trying to use the google app engine to run a Laravael 5 application, whenever I try to deploy the following error occurs:

  

** Updating service [default] ... failed.

     

ERROR: (gcloud.app.deploy) Error Response: [13] An internal error   occurred while creating a Google Cloud Storage bucket. **

I'm following the documentation that appears on their website: link

Has anyone ever gone through this? Do you know what may be happening?

My account is Free Trial, but I activated the payment, does it have something to do?

    
asked by anonymous 14.11.2017 / 19:27

1 answer

0

Hello,

First of all, check if you have the app.yaml file at the root of your project, if you do not have it with the code below:

runtime: php
env: flex

runtime_config:
  document_root: public

skip_files:
  - .env

env_variables:
  # Put production environment variables here.
  APP_LOG: errorlog
  APP_KEY: /* na pasta do seu projeto rode o comando php artisan key:generate e cole o código gerado aqui, ex: base64:abc...=*/
  STORAGE_DIR: /tmp

Enter your project folder and run the 'gcloud init' command prompt.

Then choose your account and project from the options it will display

And then just run 'gcloud app deploy'

Note: In the folder of your project it can not contain that file '.env', if you have remove it to upload and then put it back in the project.

    
20.04.2018 / 17:21