I’m using ploi.io as the control panel between my GitHub repo and my server on DigitalOcean.
Set the database settings in .env.
Copied auth.json from my laptop.
Changed default directory to serve from /public
to /
Deployed
Had to do php artisan migrate
manually
But I’m not sure as to what else I should be doing to get this right.
SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘xxx.system_settings’ doesn’t exist (SQL: select * from
system_settings
whereitem
= cms_maintenance_settings limit 1)
admin :
SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘xxx.backend_users’ doesn’t exist (SQL: select count(*) as aggregate from
backend_users
wherebackend_users
.deleted_at
is null)
After typing all this I realised I had to also do :
php artisan october:migrate
Now it working.