Skip to content

Commit 722404b

Browse files
committed
Update the configuration file
1 parent 635e124 commit 722404b

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

mkdocs.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
site_name: Python by Example
2+
repo_url: https://github.com/braboj/tutorial-python
3+
site_dir: site
24
docs_dir: docs
35

46
theme:
@@ -8,3 +10,44 @@ theme:
810
plugins:
911
- search
1012
- awesome-pages
13+
14+
nav:
15+
- Project:
16+
- Home: project/index.md
17+
18+
- Examples:
19+
- Introduction: examples/01_hello_world.md
20+
- Variables: examples/02_variables.md
21+
- Comments: examples/03_comments.md
22+
- Operators: examples/04_operators.md
23+
- User Input: examples/05_user_input.md
24+
- Control Flow: examples/06_control_flow.md
25+
- Functions: examples/07_functions.md
26+
- Classes: examples/08_classes.md
27+
- Docstrings: examples/09_docstrings.md
28+
- Debugging: examples/10_debugging.md
29+
- Logging: examples/13_logging.md
30+
- OOP Pillars: examples/11_oop_pillars.md
31+
- SOLID Principles: examples/12_solid_principles.md
32+
- Design Patterns: examples/21_design_patterns.md
33+
- Exceptions: examples/14_exceptions.md
34+
- Dunder Methods: examples/15_dunder_methods.md
35+
- Import System: examples/17_import_system.md
36+
- Lintinig Tools: examples/18_linting_tools.md
37+
- Test Frameworks: examples/19_test_frameworks.md
38+
- Package Managers: examples/20_package_managers.md
39+
- Data Structures: examples/16_data_structures.md
40+
- Concurrency: examples/22_concurrency.md
41+
- Meta Classes: examples/23_meta_classes.md
42+
- Generators: examples/24_generators.md
43+
- Coroutines: examples/25_coroutines.md
44+
- Garbage Collection: examples/26_garbage_collector.md
45+
- Weakref: examples/27_weakref.md
46+
- Optimization: examples/28_optimization.md
47+
- Packaging: examples/29_packaging.md
48+
- Compatibility: examples/30_compatibility.md
49+
- Tracing: examples/31_tracing.md
50+
- Profiling: examples/32_profiling.md
51+
- Inspections: examples/33_inspections.md
52+
- Extensions: examples/34_extensions.md
53+
- Security: examples/35_secure_desing.md

0 commit comments

Comments
 (0)