Added template help

This commit is contained in:
Tom Holland 2016-12-27 10:47:42 -08:00
parent e39c53cd0e
commit ad9c0fa286
1 changed files with 18 additions and 2 deletions

View File

@ -27,6 +27,9 @@ Make sure the Toolbox installed successfully by running the help query. You shou
```sh
vapor --help
```
## Create A Project
Now that you have installed the Toolbox, you can create your first Vapor project following the [Hello, World guide](hello-world.md).
### Updating
@ -36,6 +39,19 @@ The toolbox can update itself. This may be useful if you experience any issues i
vapor self update
```
## Create A Project
### Templates
Now that you have installed the Toolbox, you can create your first Vapor project following the [Hello, World guide](hello-world.md).
The toolbox can create a project from the Vapor basic-template or any other git repo.
```sh
vapor new <name> [--template=<repo-url-or-github-path>]
```
The toolbox will build an absolute URL based on what you pass as the template option. If you do not specify a template option, the project will be built from the Vapor basic-template.
```sh
Default(no template option specified) => https://github.com/vapor/basic-template
http(s)://example.com/repo-path => http(s)://example.com/repo-path
user/repo => https://github.com/user/repo
light => https://github.com/vapor/light-template
```