mirror of https://github.com/vapor/docs.git
87 lines
2.3 KiB
YAML
87 lines
2.3 KiB
YAML
site_name: 'Vapor Docs'
|
|
copyright: 'Copyright © 2017 Qutheory, LLC'
|
|
|
|
pages:
|
|
- Overview: 'index.md'
|
|
- Async:
|
|
- 'Promise & Future': 'async/promise-future.md'
|
|
- 'Stream': 'async/stream.md'
|
|
- Crypto:
|
|
- 'Base64': 'crypto/base64.md'
|
|
- 'Hashes': 'crypto/hash.md'
|
|
- 'Message authentication': 'crypto/mac.md'
|
|
- 'Password hashing': 'crypto/passwords.md'
|
|
- 'Random': 'crypto/random.md'
|
|
- HTTP:
|
|
- 'Basics':
|
|
- 'Body': 'http/body.md'
|
|
- 'Client': 'http/client.md'
|
|
- 'Headers': 'web/headers.md'
|
|
- 'Methods': 'http/method.md'
|
|
- 'Middleware': 'http/middleware.md'
|
|
- 'Multipart': 'web/multipart.md'
|
|
- 'Response': 'http/response.md'
|
|
- 'Responder': 'http/responder.md'
|
|
- 'Request': 'http/request.md'
|
|
- 'Status codes': 'http/status.md'
|
|
- 'URI': 'http/uri.md'
|
|
- 'Advanced':
|
|
- 'RequestParser': 'http/request-parser.md'
|
|
- 'RequestSerializer': 'http/request-serializer.md'
|
|
- 'ResponseParser': 'http/response-parser.md'
|
|
- 'ResponseSerializer': 'http/response-serializer.md'
|
|
- 'Server': 'http/server.md'
|
|
- JWT:
|
|
- 'Signed Tokens': 'jwt/jws.md'
|
|
# - Leaf:
|
|
# - MySQL:
|
|
- Routing:
|
|
- 'Async': 'routing/async.md'
|
|
- 'Parameters': 'routing/parameters.md'
|
|
- 'Route': 'routing/route.md'
|
|
- 'Router': 'routing/router.md'
|
|
- 'Sync': 'routing/sync.md'
|
|
# - Service:
|
|
# - TCP:
|
|
# - ''
|
|
# - TLS:
|
|
- Vapor:
|
|
- 'Route Collection': 'vapor/route-collection.md'
|
|
- 'Route Group': 'vapor/route-group.md'
|
|
- WebSocket:
|
|
- 'Basics':
|
|
- 'Binary': 'websocket/binary-stream.md'
|
|
- 'Text': 'websocket/text-stream.md'
|
|
- 'Advanced':
|
|
- 'Client': 'websocket/client.md'
|
|
- 'Server': 'websocket/server.md'
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- codehilite(guess_lang=false)
|
|
- footnotes
|
|
- meta
|
|
- toc(permalink=true)
|
|
|
|
theme: 'material'
|
|
theme_dir: 'vapor-material'
|
|
repo_url: https://github.com/vapor/documentation
|
|
|
|
extra_css:
|
|
- 'stylesheets/extra.css'
|
|
edit_uri: edit/master/2.0/docs/
|
|
extra:
|
|
logo: 'images/droplet-white.svg'
|
|
social:
|
|
- type: 'twitter'
|
|
link: 'https://twitter.com/@codevapor'
|
|
- type: 'slack'
|
|
link: 'http://vapor.team/'
|
|
font:
|
|
text: 'Roboto Slab'
|
|
code: 'Source Code Pro'
|
|
|
|
google_analytics:
|
|
- 'UA-76177358-4'
|
|
- 'auto'
|