This is driving me crazy second day. I'm new to Laravel and trying to get Laravel 6 work on Google App Engine Standard. Tried: This tutorial and other ones, but it still fails to load Laravel index page
What I have done:
Created new Laravel project
Checked that Laravel is working on local host with
php artisan serve
Generated new key with
php artisan key:generate --show
Created app.yaml file with:
runtime: php72
env_variables:
APP_KEY: iktbUa2quYPV2av3zDx0XAuEVjwzVQY/oMfyI2PQNKk=
APP_STORAGE: /tmp
VIEW_COMPILED_PATH: /tmp
SESSION_DRIVER: cookie
Modified bootstrap/app.php by adding
$app->useStoragePath(env('APP_STORAGE', base_path() . '/storage'));
Ran
composer remove --dev beyondcode/laravel-dump-server
Also ran:
php artisan cache:clear
,php artisan route:cache
,php artisan config:clear
,php artisan view:clear
(as other tutorials suggested)And
gcloud app deploy
And I get error: "Class 'Facade\Ignition\IgnitionServiceProvider' not found"
config/app.php [provider & alias]
? – Palenque