Forrest logo
back to the lambo tool

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

The command "lambo new --link ${app_name}" is used to create a new project or application using the Lambo framework and then link it to an existing Laravel application.

Here's a breakdown of the command:

  1. "lambo" refers to the Lambo command-line tool. Lambo is a command-line utility created by Tighten that simplifies the process of creating new Laravel applications. It provides a convenient way to generate boilerplate code, configure databases, and perform other common tasks.

  2. "new" is an argument passed to the "lambo" command, specifying that we want to create a new project.

  3. "--link" is another argument passed to the "lambo" command, indicating that we want to link the newly created project to an existing Laravel application.

  4. "${app_name}" is a variable placeholder that should be replaced with the name of the application you want to create. For example, if you want to create an application called "my-app", you would replace "${app_name}" with "my-app".

Overall, this command allows you to quickly create a new project using Lambo and then connect it to an existing Laravel application for further development or integration purposes.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the lambo tool