You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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?