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:
1. `composer install`
2. `php artisan db:seed`
3. `php artisan migrate`
.. and so on. How do I go about this?
You found any solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.