-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
116 lines (109 loc) · 3.05 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
site_name: Avengercon VIII Workshop
site_description: Avengercon VIII Workshop--Horizontally Scaling Python for Production
strict: true
repo_name: brent-stone/avengercon_2024
repo_url: https://github.com/brent-stone/avengercon_2024
edit_uri: edit/main/docs/
watch:
- avengercon
extra_css:
- stylesheets/extra.css
theme:
name: 'material'
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey
accent: teal
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: teal
toggle:
icon: material/lightbulb
name: "Switch to light mode"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.tabs
- navigation.top
- navigation.footer
- content.action.view
- content.action.edit
logo: 'cyber_branch.png'
favicon: 'favicon.png'
# https://www.mkdocs.org/user-guide/configuration/#validation
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
nav:
- Home: index.md
- Workshop:
- Hello, Workshop!: workshop/1_hello_workshop.md
- Parallel Pros and Cons: workshop/2_pros_cons.md
- Dask: workshop/3_dask.md
- Celery & Flower: workshop/4_celery.md
- Apache Beam: workshop/5_beam.md
- Other Information:
- Cloudflare: developers/cloudflare.md
- Docker: developers/docker.md
- Documentation: developers/docs.md
- GitLab CI: developers/gitlab_ci.md
- Operating Systems: developers/os.md
- PostgreSQL: developers/postgres.md
- SQLAlchemy & Alembic: developers/sqlalchemy_alembic.md
- Testing: developers/testing.md
- Traefik: developers/traefik.md
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.extra
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
# Enable inline HTML and CSS
# https://squidfunk.github.io/mkdocs-material/reference/tooltips/#configuration
- abbr
- attr_list
- pymdownx.snippets
- md_in_html
- pymdownx.inlinehilite
plugins:
- search
# https://squidfunk.github.io/mkdocs-material/plugins/offline/#config.enabled
- offline:
enabled: !ENV [MKDOCS_OFFLINE, false]
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
- git-revision-date-localized:
enabled: !ENV [CI, false]
type: date
enable_creation_date: true