-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
72 lines (71 loc) · 2.01 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
site_name: Python code studies
repo_url: https://github.com/jbcodeforce/python-code
nav:
- Introduction:
- Basic: index.md
- Summary: python/python-summary.md
- Advanced: python/faq.md
- Coding:
- Development environment: coding/dev-env.md
- Design patterns: coding/dp.md
- Code studies: coding/references.md
- Data & AI:
- Pandas: data/pandas/index.md
- Web Data: data/webcrawling/readme.md
- Python and data sciences: https://jbcodeforce.github.io/ML-studies
- Web App:
- FastAPI: fastapi/index.md
- Flask studies and basic samples: flask/readme.md
- Flask Rest microservice with TDD and Docker: flask/flask-tdd-docker.md
- Flask webapp template with docker: https://github.com/jbcodeforce/python-code/tree/master/Flask/firstRESTapp
- Pydantic: python/pydantic.md
- Techno:
- AWS: techno/aws/index.md
- Python and Spark: https://jbcodeforce.github.io/spark-studies
- Astronomy statistics and image processing: astronomy/README.md
- Kafka consumer and producer: https://jbcodeforce.github.io/kafka-studies
- Back to main: https://jbcodeforce.github.io/
theme:
name: material
palette:
scheme: default
language: en
features:
- content.code.annotate
- content.code.copy
- content.tooltips
# - navigation.tabs
- navigation.instant
- navigation.tracking
# - navigation.sections
# - navigation.expand
- navigation.tabs.sticky
# - navigation.top
social:
- type: 'github'
link: 'https://github.com/jbcodeforce'
- type: 'linkedin'
link: 'https://linkedin.com/in/jeromeboyer'
extra_css: ["extra.css"]
plugins:
- search:
lang: en
- minify:
minify_html: true
markdown_extensions:
- abbr
- attr_list
- md_in_html
- admonition
- codehilite
- footnotes
- pymdownx.smartsymbols
- pymdownx.superfences
- toc:
permalink: true
toc_depth: 3
- pymdownx.tabbed
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details