diff --git a/readme.md b/readme.md index e8deb78b..f3c2a68d 100644 --- a/readme.md +++ b/readme.md @@ -50,29 +50,23 @@ There are also a few optional behaviors based on the parameters you pass (or def lambo --help ``` -- `-p` or `--path` to specify where to install the application. +- `-e` or `--editor` to define your editor command. Whatever is passed here will be run as `$EDITOR .` after creating the project. ```bash - lambo superApplication -p ~/Sites + # runs "subl ." in the project directory after creating the project + lambo superApplication --editor subl ``` - `-m` or `--message` to set the first commit message. ```bash - lambo superApplication -m "This lambo runs fast!" - ``` - -- `-e` or `--editor` to define your editor command. Whatever is passed here will be run as `$EDITOR .` after creating the project. - - ```bash - # runs "subl ." in the project directory after creating the project - lambo superApplication -e subl + lambo superApplication --message "This lambo runs fast!" ``` -- `-b` or `--browser` to define which browser you want to open the project in. +- `-p` or `--path` to specify where to install the application. ```bash - lambo superApplication -b "/Applications/Google Chrome Canary.app" + lambo superApplication --path ~/Sites ``` - `-d` or `--dev` to choose the `develop` branch instead of `master`, getting the beta install @@ -93,6 +87,18 @@ There are also a few optional behaviors based on the parameters you pass (or def lambo superApplication --node ``` +- `-b` or `--browser` to define which browser you want to open the project in. + + ```bash + lambo superApplication --browser "/Applications/Google Chrome Canary.app" + ``` + +- `-l` or `--link` to create a Valet link to the project directory. + + ```bash + lambo superApplication --link + ``` + ### Commands - `make-config` creates a config file so you don't have to pass the parameters every time you use Lambo