I have setup bitbucket pipeline to push updates on the staging server when a commit is made. I am using git ftp
for that.
On the next step I need to run various command on the deployment (staging) server in order to run the app properly after the push.
For example:
composer install
php artisan db:seed
php artisan migrate
.. and so on.