-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
100 lines (93 loc) · 3.13 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
---
nav:
- Home: index.md
- Install:
Operating System:
- Unraid: install/unraid.md
- Windows: install/windows.md
- Linux 🚧: install/linux.md
- MacOS 🚧: placeholder.md
- User's Guide:
- Installing Apps 🚧: users/install_apps.md
- Configuring Conreq:
- Server Settings Interface: users/configure/server_settings.md
- Settings Config File: users/configure/env_vars.md
- Custom CSS/JS 🚧: users/configure/static_files.md
- Developer's Guide:
- Setup a Conreq Enviroment:
- 1. Install Requirements: developers/setup/requirements.md
- 2. Run Conreq from Source: developers/setup/run.md
- Programmer's Interface:
- Command Line Interface 🚧: developers/interface/cli.md
- Python Interface 🚧: developers/interface/python.md
- Creating Your First App:
- Getting Started 🚧: developers/apps/getting_started.md
- App File Structure 🚧: developers/apps/file_structure.md
- Creating "Hello World" 🚧: developers/apps/hello_world.md
- Contributing:
- Conreq Source Code Explained 🚧: developers/contribute/code_tldr.md
- Updating Conreq Source Code 🚧: placeholder.md
- Updating Conreq Docs: developers/contribute/docs.md
- Listing an App 🚧: developers/contribute/apps.md
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/white-balance-sunny
name: Switch to light mode
primary: teal
accent: teal
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: teal
accent: teal
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- toc.integrate
- navigation.top
icon:
repo: fontawesome/brands/github
markdown_extensions:
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- pymdownx.inlinehilite
- admonition
- attr_list
plugins:
- search
- include-markdown
- git-revision-date-localized:
fallback_to_build_date: true
extra:
generator: false
extra_css:
- stylesheets/extra.css
watch:
- docs
- mkdocs.yml
- README.md
- CHANGELOG.md
site_name: Conreq Documentation
site_author: Archmonger
site_description: Conreq Web Platform
copyright: Copyright © 2022 Conreq Team
repo_url: https://github.com/Archmonger/Conreq/
site_url: https://archmonger.github.io/Conreq/
repo_name: Archmonger/Conreq
edit_uri: edit/docs
docs_dir: docs/src