File tree Expand file tree Collapse file tree 3 files changed +82
-0
lines changed
Expand file tree Collapse file tree 3 files changed +82
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ site_name : CPP Lab datasets
3+ repo_url : https://github.com/marcobarilari/Datasets.git
4+
5+ nav :
6+ - CPP Lab raw data :
7+ - Home : README.md
8+ - Contributing : CONTRIBUTING.md
9+
10+ theme :
11+ name : material
12+ features :
13+ - navigation.top
14+ - content.action.edit
15+ icon :
16+ repo : fontawesome/brands/github
17+ edit : material/pencil
18+ palette :
19+ # Palette toggle for automatic mode
20+ - media : (prefers-color-scheme)
21+ toggle :
22+ icon : material/brightness-auto
23+ name : Switch to light mode
24+ # Palette toggle for light mode
25+ - media : ' (prefers-color-scheme: light)'
26+ scheme : default
27+ toggle :
28+ icon : material/brightness-7
29+ name : Switch to dark mode
30+ # Palette toggle for dark mode
31+ - media : ' (prefers-color-scheme: dark)'
32+ scheme : slate
33+ toggle :
34+ icon : material/brightness-4
35+ name : Switch to system preference
36+
37+ edit_uri : edit/main/src/
38+
39+ markdown_extensions :
40+ - toc :
41+ anchorlink : true
42+ - pymdownx.superfences
43+
44+ plugins :
45+ - search
46+
47+ docs_dir : src
48+
49+ use_directory_urls : false
Original file line number Diff line number Diff line change 1+ mkdocs >= 1.1
2+ mkdocs-material >= 5.4
3+ pre-commit
4+ black
5+ flake8
Original file line number Diff line number Diff line change 1+ # CONTRIBUTING
2+
3+ - fork this repository
4+ - clone your forked repository
5+ - install the dependencies
6+
7+ ``` bash
8+ pip install -r requirements.txt
9+ ```
10+
11+ - create a branch
12+ - make your changes
13+ - visualize your changes
14+
15+ ``` bash
16+ mkdocs serve
17+ ```
18+
19+ This should serve the doc locally on a localhost port.
20+
21+ Something like:
22+
23+ ```
24+ Serving on http://127.0.0.1:8000/
25+ ```
26+
27+ - push your changes to your forked repository
28+ - open a pull request
You can’t perform that action at this time.
0 commit comments