Skip to content

Useful commands

Piotr Majdak edited this page Dec 29, 2025 · 2 revisions
  • To update the PHP files doing the jobs: laravel/artisan queue:restart

  • To see all processes running for Octave: pgrep -a -u www-data octave-cli

  • To kill all Octave processes: sudo -u www-data kill -s KILL $(pidof octave-cli)

  • To create a migration: laravel/artisan make:migration add_something_to_my_table

  • To rollback a migration: laravel/artisan migrate:rollback

  • To clear the caches of config, routes, views, and Cache: laravel/artisan optimize:clear

Clone this wiki locally