I'm making an application in Laravel and want to make the updating of the application as easy as possible. The end user will not have ssh access to the server, or the ability to execute a composer update
or git pull
on the server. It needs to be an update process similar to Wordpress, where it's essentially a one-click process to update the application. Is there anything out there that can do something like this? What would be the best way to setup the application with easy updating in mind?
I'd say look at how octobercms is doing this.... or build on october cms.
I would build a webpage behind an authentication method. A logged in user go to the page the page has a button on it.
Clicking the button calls a method that executes the sys command
Illuminate\Console\Command::call('composer update', array(''));
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community