Hands-On Server-Side Web Development with Swift
上QQ阅读APP看书,第一时间看更新

Using Vapor Toolbox Commands

The Vapor CLI command, vapor --help, comes in handy if you want to check out all available Vapor commands.

The output of this Vapor command looks like this:

Usage: vapor command
Join our Slack if you have questions, need help,
or want to contribute: http://vapor.team
Commands:
new Creates a new Vapor application from a template.
Use --template=repo/template for github templates
Use --template=full-url-here.git for non github templates
Use --web to create a new web app
Use --auth to create a new authenticated API app
Use --api (default) to create a new API
build Compiles the application.
run Runs the compiled application.
fetch Fetches the application's dependencies.
update Updates your dependencies.
clean Cleans temporary files--usually fixes
a plethora of bizarre build errors.
test Runs the application's tests.
xcode Generates an Xcode project for development.
Additionally links commonly used libraries.
version Displays Vapor CLI version
cloud Commands for interacting with Vapor Cloud.
heroku Commands to help deploy to Heroku.
provider Commands to help manage providers.
Use `vapor command --help` for more information on a command.

The following table lists all of the useful Terminal commands for managing your Vapor projects: