|
| 1 | +{ |
| 2 | + "//": "The type of server to use for handling requests.", |
| 3 | + "//": "engine: Vapor's blazing fast Engine HTTP server.", |
| 4 | + "server": "engine", |
| 5 | + |
| 6 | + "//": "The type of client to use for requesting data from other services.", |
| 7 | + "//": "engine: Vapor's blazing fast Engine HTTP client.", |
| 8 | + "//": "foundation: A wrapper around Foundation's URLSession.", |
| 9 | + "client": "engine", |
| 10 | + |
| 11 | + "//": "The type of console to use for displaying information and prompting input.", |
| 12 | + "//": "terminal: Vapor's default terminal console.", |
| 13 | + "console": "terminal", |
| 14 | + |
| 15 | + "//": "The type of logger to use for recording logs, warnings, errors, etc.", |
| 16 | + "//": "console: Vapor's default logger sends logs directly to the chosen console.", |
| 17 | + "log": "console", |
| 18 | + |
| 19 | + "//": "The type of hasher to use for hashing messages.", |
| 20 | + "//": "crypto: Vapor's default hasher powered by OpenSSL (configure in crypto.json)", |
| 21 | + "//": "bcrypt: Performant BCrypt hashing implementation (configure in bcrypt.json)", |
| 22 | + "hash": "crypto", |
| 23 | + |
| 24 | + "//": "The type of cipher to use for encrypting and decrypting messages.", |
| 25 | + "//": "crypto: Vapor's default cipher powered by OpenSSL (configure in crypto.json)", |
| 26 | + "cipher": "crypto", |
| 27 | + |
| 28 | + "//": "The type of view renderer that drop.view will use", |
| 29 | + "//": "leaf: Pure Swift templating language created for Vapor.", |
| 30 | + "//": "static: Simply return the view at the supplied path", |
| 31 | + "view": "leaf", |
| 32 | + |
| 33 | + "//": "Choose which middleware are enabled (and in which order).", |
| 34 | + "//": "error: Catches errors thrown in your application and returns a nice response.", |
| 35 | + "//": "date: Adds the 'Date' header to HTTP requests.", |
| 36 | + "//": "file: Catches 404 errors and checks for files in the Public/ folder", |
| 37 | + "middleware": [ |
| 38 | + "error", |
| 39 | + "date", |
| 40 | + "file" |
| 41 | + ], |
| 42 | + |
| 43 | + "//": "Choose which commands this application can run", |
| 44 | + "commands": [] |
| 45 | +} |
0 commit comments