Forrest logo
tool overview
On this page you find all important commands for the CLI tool lambo. If the command you are looking for is missing please ask our AI.

lambo

Lambo is a command line tool designed for working with Laravel applications. It is a Laravel installation manager that aims to simplify the process of creating and managing multiple Laravel projects. With Lambo, developers can quickly create new projects by running a single command, saving time and effort. It provides a streamlined workflow for setting up local development environments by automatically handling database configurations, generating application keys, and handling other common setup tasks. Lambo supports various options and flags to customize project creation, such as specifying the Laravel version, choosing a front-end preset, and enabling or disabling specific features.
It integrates with Homestead, Laravel's official local development environment, allowing developers to effortlessly provision and manage Homestead boxes through Lambo. Furthermore, developers can easily manage existing Laravel projects by listing, opening, and deleting projects with Lambo's intuitive commands. Lambo is built using the Laravel Zero framework, making it easily extensible and allowing developers to contribute to its development. Its clean and simple interface, coupled with its time-saving features, makes Lambo an essential tool for Laravel developers. Lambo is actively maintained and regularly updated, ensuring compatibility with the latest versions of Laravel and providing ongoing support to developers.

List of commands for lambo:

  • lambo-new:tldr:01b0c lambo-new: Open a specific editor after the project has been created.
    $ lambo new --editor="${editor}" ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:08351 lambo-new: Include authentication scaffolding.
    $ lambo new --auth ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:29e21 lambo-new: Install npm dependencies after the project has been created.
    $ lambo new --node ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:56804 lambo-new: Install the application in a specific path.
    $ lambo new --path=${path-to-directory} ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:85e28 lambo-new: Create a new MySQL database with the same name as the project.
    $ lambo new --create-db --dbuser=${user} --dbpassword=${password} ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:a3316 lambo-new: Create a Valet site after the project has been created.
    $ lambo new --link ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:c441f lambo-new: Create a new Laravel application.
    $ lambo new ${app_name}
    try on your machine
    explain this command
  • lambo-new:tldr:d8695 lambo-new: Include a specific frontend.
    $ lambo new --${select} ${app_name}
    try on your machine
    explain this command
  • lambo:tldr:93d24 lambo: Open the configuration in your default editor.
    $ lambo edit-config
    try on your machine
    explain this command
  • lambo:tldr:c2b8a lambo: Open the configuration in a specific editor.
    $ lambo edit-config --editor="${path-to-editor}"
    try on your machine
    explain this command
  • lambo:tldr:d19c2 lambo: Open the configuration file that is run after new applications have been scaffolded.
    $ lambo edit-after
    try on your machine
    explain this command
tool overview