DEV Community

saeedeldeeb
saeedeldeeb

Posted on

Laravel Sail

As mentioned in sail docs:
Laravel Sail is a light-weight command-line interface for interacting with Laravel's default Docker development environment. Sail provides a great starting point for building a Laravel application using PHP, MySQL, and Redis without requiring prior Docker experience.

Steps to install Laravel Sail on your machine:

  1. Install Laravel using curl command from laravel builder:
       curl -s https://laravel.build/your-app-name | bash
       you can change your-app-name in the link.

 2. Move to the project directory:
       cd your-app-name

 3. To up your container 
       /vendor/bin/sail up -> this may take several minutes.

 4. Now you can see your App running on: 
       http://localhost.
Enter fullscreen mode Exit fullscreen mode

Top comments (0)