2020-11-28 14:28:47 +00:00
|
|
|
site_name: Crow
|
|
|
|
|
|
|
|
# Repository
|
2021-07-30 10:09:01 +00:00
|
|
|
repo_name: CrowCpp/Crow
|
|
|
|
repo_url: https://github.com/CrowCpp/Crow
|
|
|
|
site_url: https://crowcpp.org
|
2020-11-28 14:28:47 +00:00
|
|
|
edit_uri: ""
|
|
|
|
|
|
|
|
theme:
|
2022-05-12 09:42:28 +00:00
|
|
|
name: material
|
|
|
|
font: false
|
|
|
|
language: 'en'
|
|
|
|
features:
|
|
|
|
navigation.tabs
|
|
|
|
favicon: 'assets/favicon.svg'
|
|
|
|
logo: 'assets/favicon.svg'
|
|
|
|
icon:
|
|
|
|
repo: fontawesome/brands/github-square
|
|
|
|
static_templates:
|
|
|
|
- privacy_policy.html
|
|
|
|
palette:
|
|
|
|
- media: "(prefers-color-scheme: light)"
|
|
|
|
scheme: crow-light
|
|
|
|
toggle:
|
|
|
|
icon: fontawesome/solid/sun
|
|
|
|
name: Using Light Theme
|
|
|
|
- media: "(prefers-color-scheme: dark)"
|
|
|
|
scheme: crow-dark
|
|
|
|
toggle:
|
|
|
|
icon: fontawesome/solid/moon
|
|
|
|
name: Using Dark Theme
|
|
|
|
custom_dir: docs/overrides
|
2020-11-28 14:28:47 +00:00
|
|
|
|
|
|
|
markdown_extensions:
|
2022-05-12 09:42:28 +00:00
|
|
|
- toc:
|
|
|
|
permalink: true
|
|
|
|
- admonition
|
|
|
|
- pymdownx.highlight
|
|
|
|
- pymdownx.tabbed
|
|
|
|
- pymdownx.superfences
|
|
|
|
- pymdownx.inlinehilite
|
|
|
|
- pymdownx.keys
|
2022-05-12 21:49:52 +00:00
|
|
|
- attr_list
|
|
|
|
- pymdownx.emoji:
|
|
|
|
emoji_index: !!python/name:materialx.emoji.twemoji
|
|
|
|
emoji_generator: !!python/name:materialx.emoji.to_svg
|
|
|
|
|
2020-11-28 14:28:47 +00:00
|
|
|
|
|
|
|
nav:
|
2022-05-12 09:42:28 +00:00
|
|
|
- Home: index.md
|
|
|
|
- Getting Started:
|
|
|
|
- Setup:
|
|
|
|
- Linux: getting_started/setup/linux.md
|
|
|
|
- MacOS: getting_started/setup/macos.md
|
|
|
|
- Windows: getting_started/setup/windows.md
|
|
|
|
- Your First Application: getting_started/your_first_application.md
|
|
|
|
- Guides:
|
|
|
|
- Different parts of Crow:
|
|
|
|
- App: guides/app.md
|
|
|
|
- Routes: guides/routes.md
|
|
|
|
- Logging: guides/logging.md
|
|
|
|
- JSON: guides/json.md
|
|
|
|
- Templating (Mustache): guides/templating.md
|
|
|
|
- Multipart: guides/multipart.md
|
|
|
|
- Query Strings: guides/query-string.md
|
|
|
|
- Middleware: guides/middleware.md
|
|
|
|
- SSL: guides/ssl.md
|
|
|
|
- Static Files: guides/static.md
|
|
|
|
- Blueprints: guides/blueprints.md
|
|
|
|
- Compression: guides/compression.md
|
|
|
|
- Websockets: guides/websockets.md
|
|
|
|
- Base64: guides/base64.md
|
|
|
|
- Writing Tests: guides/testing.md
|
|
|
|
- Using Crow:
|
|
|
|
- HTTP Authorization: guides/auth.md
|
|
|
|
- Included Middlewares: guides/included-middleware.md
|
|
|
|
- Server setup:
|
|
|
|
- Proxies: guides/proxies.md
|
|
|
|
- Systemd run on startup: guides/syste.md
|
|
|
|
- API Reference:
|
|
|
|
- API Reference: 'reference/index.html'
|
2020-11-28 14:28:47 +00:00
|
|
|
|
|
|
|
extra:
|
2022-05-12 09:42:28 +00:00
|
|
|
version:
|
|
|
|
provider: mike
|
|
|
|
default: latest
|
|
|
|
analytics:
|
|
|
|
provider: matomo
|
|
|
|
id: 1
|
|
|
|
link: //thee.dev/matomo/
|
|
|
|
social:
|
|
|
|
- icon: fontawesome/brands/github
|
|
|
|
link: https://github.com/crowcpp/crow
|
|
|
|
- icon: fontawesome/brands/gitter
|
|
|
|
link: https://gitter.im/crowfork/community
|
2021-10-06 10:34:37 +00:00
|
|
|
|
|
|
|
plugins:
|
2022-05-12 09:42:28 +00:00
|
|
|
- redirects:
|
|
|
|
redirect_maps:
|
|
|
|
'getting_started/setup/': 'getting_started/setup/linux.md'
|
|
|
|
- meta-descriptions
|
|
|
|
- search
|
2021-10-06 10:34:37 +00:00
|
|
|
|
2020-11-28 14:28:47 +00:00
|
|
|
extra_css:
|
2022-05-12 09:42:28 +00:00
|
|
|
- 'stylesheets/colors.css'
|
|
|
|
- 'stylesheets/latofonts.css'
|
|
|
|
- 'stylesheets/extra.css'
|
2020-11-28 14:28:47 +00:00
|
|
|
|
2022-01-12 03:17:36 +00:00
|
|
|
copyright: 'Copyright © 2020-2022 CrowCpp'
|