stages.php 523 B

1234567891011121314151617181920
  1. <?php
  2. return [
  3. // Stages
  4. //
  5. // The multiples stages of your application
  6. // if you don't know what this does, then you don't need it
  7. //////////////////////////////////////////////////////////////////////
  8. // Adding entries to this array will split the remote folder in stages
  9. // Like /var/www/yourapp/staging and /var/www/yourapp/production
  10. 'stages' => [],
  11. // The default stage to execute tasks on when --stage is not provided
  12. // Falsey means all of them
  13. 'default' => '',
  14. ];