Now I have a Laravel project, and I want to deploy to the server. My application needs to run some laravel command line just one time to deploy.
Ex: php artisan key:generate, or php artisan storage:link.
How can I autorun those command-line when deploying the application to the server?
P/s: Of course I can run by typing, but I don't want. Any best solution to run all of them just by one manipulation?