how can I use the laravel console on a remote server?

1

I'm new to laravel and I'm working on a project where I need to do a cron job, the problem is that I do not know what route to take, I'd like to know how to execute artisan commands on a remote server, and what programs should I use, any answer will be very helpful, thank you.

    
asked by Felipe Castillo 10.04.2017 в 19:23
source

1 answer

0

Executing artisan commands locally or on a remote server should be similar, assuming that you are working with similar environments and that you have the proper permissions to run php or artisan from the command line.

More information about the Laravel cron in its documentation: link

If you need to know the base route of your project, you can print it and see it quickly with the helper base_path() , here you will find its respective documentation: link

    
answered by 10.04.2017 / 19:38
source