In JS world you do a production build with npm run build and that's it. You can ship it and it just works, in e.g. Adonis case the only difference is the production environment variable and you get 50 000 req/s out of the box without any cluster mode etc.
The question is, how do I achieve full production mode similar to npm run build in Laravel 10. Forget Livewire, Inertia, etc. Just pure L10 installation that I want to test for hello-world homepage in production.
Is there a list of commands similar to npm run build that would get me there? I want to create a checkbox type of deployment list I follow for each Laravel project.