2025-03-14 21:59:59 -06:00
|
|
|
# lambo new
|
|
|
|
|
|
|
|
|
|
> A super-powered `laravel new` for Laravel and Valet.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://github.com/tighten/lambo#lambo-commands>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Create a new Laravel application:
|
|
|
|
|
|
|
|
|
|
`lambo new {{app_name}}`
|
|
|
|
|
|
|
|
|
|
- Install the application in a specific path:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lambo new {{[-p|--path]}} {{path/to/directory}} {{app_name}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Include authentication scaffolding:
|
|
|
|
|
|
|
|
|
|
`lambo new --auth {{app_name}}`
|
|
|
|
|
|
|
|
|
|
- Include a specific frontend:
|
|
|
|
|
|
|
|
|
|
`lambo new --{{vue|bootstrap|react}} {{app_name}}`
|
|
|
|
|
|
|
|
|
|
- Install `npm` dependencies after the project has been created:
|
|
|
|
|
|
|
|
|
|
`lambo new --node {{app_name}}`
|
|
|
|
|
|
|
|
|
|
- Create a Valet site after the project has been created:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lambo new {{[-l|--link]}} {{app_name}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Create a new MySQL database with the same name as the project:
|
|
|
|
|
|
|
|
|
|
`lambo new --create-db --dbuser={{user}} --dbpassword={{password}} {{app_name}}`
|
|
|
|
|
|
|
|
|
|
- Open a specific editor after the project has been created:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`lambo new {{[-e|--editor]}} "{{editor}}" {{app_name}}`
|