Can Laravel Sail be used for production, or is its intent just for a local environment? I plan to use Docker for both local and production. I've already built stuff with Docker without using Sail - wondering if there is an advantage to Sail and if it can be used for both?
One used case I have, a central server (not on sail) and api clients (on sails) , all on Laravel.
My clients did some calculations (with local & central data) and my server is used to manage the clients and store historical data. Using sail for my clients make my task easy to deploy them where I want very quickly, even on a laptop.
Looks like some of the things on this hint that its not such a hot idea. Sounds like it doesn't use a webserver like Apache, it just relies on php artisan serve.