Linux command
lambo 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Create new Laravel project
lambo new [project-name]
Create with options
lambo new [project-name] --editor=[code]
Create with database
lambo new [project-name] --create-db
Create with authentication
lambo new [project-name] --auth
Skip common prompts
lambo new [project-name] --quiet
说明
lambo automates Laravel project creation. It runs multiple setup steps with a single command. The tool handles git init, composer install, and common configurations. It streamlines new project setup.
参数
- --editor _EDITOR_
- Open in editor.
- --create-db
- Create database.
- --auth
- Install authentication.
- --quiet
- Skip prompts.
- --browser _BROWSER_
- Open in browser.
- --help
- Display help information.
FAQ
What is the lambo command used for?
lambo automates Laravel project creation. It runs multiple setup steps with a single command. The tool handles git init, composer install, and common configurations. It streamlines new project setup.
How do I run a basic lambo example?
Run `lambo new [project-name]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does --editor _EDITOR_ do in lambo?
Open in editor.