Monday, May 17, 2021

Laravel Init

 

Getting Started On Windows


curl -s https://laravel.build/example-app | bash

After the project has been created, you can navigate to the application directory and start Laravel Sail. Laravel Sail provides a simple command-line interface for interacting with Laravel's default Docker configuration:

cd example-app

./vendor/bin/sail up
curl -s https://laravel.build/example-app | bash
cd example-app

./vendor/bin/sail up

Installation Via Composer


composer create-project laravel/laravel example-app

cd example-app

php artisan serve

The Laravel Installer


composer global require laravel/installer

laravel new example-app

cd example-app

php artisan serve


No comments:

Post a Comment

DSA Study Path

  How to start learning Data Structures and Algorithms? What are the best resources for learning DSA? Which algorithms are the most importan...