LinuxCommandLibrary

lambo-new

A super-powered `laravel new` for Laravel and Valet.

TLDR

Create a new Laravel application

$ lambo new [app_name]
copy


Install the application in a specific path
$ lambo new --path=[path/to/directory] [app_name]
copy


Include authentication scaffolding
$ lambo new --auth [app_name]
copy


Include a specific frontend
$ lambo new --[vue|bootstrap|react] [app_name]
copy


Install npm dependencies after the project has been created
$ lambo new --node [app_name]
copy


Create a Valet site after the project has been created
$ lambo new --link [app_name]
copy


Create a new MySQL database with the same name as the project
$ lambo new --create-db --dbuser=[user] --dbpassword=[password] [app_name]
copy


Open a specific editor after the project has been created
$ lambo new --editor="[editor]" [app_name]
copy

Copied to clipboard