diff --git a/getting-started/install-toolbox.md b/getting-started/install-toolbox.md index f6e2347f..f704292e 100644 --- a/getting-started/install-toolbox.md +++ b/getting-started/install-toolbox.md @@ -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). \ No newline at end of file +The toolbox can create a project from the Vapor basic-template or any other git repo. + +```sh +vapor new [--template=] +``` + +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 +```