-
-
Notifications
You must be signed in to change notification settings - Fork 165
/
mkdocs.yml
130 lines (124 loc) · 3.84 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
dev_addr: 127.0.0.1:3000
site_name: MyFinances
theme:
name: material
favicon: favicon.png
custom_dir: docs/overrides
features:
- announce.dismiss
- content.tabs.link
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- tables
- attr_list
- def_list
- abbr
- toc:
permalink: true
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
repo_name: MyFinances
repo_url: https://github.com/TreyWW/MyFinances
edit_uri: ./edit/main/docs
site_url: https://docs.myfinances.cloud/
site_description: Documentation for MyFinances
site_author: treyww
nav:
- User Guide:
- user-guide/index.md
- Pricing: user-guide/pricing/index.md
- Email Templates: user-guide/emails/templates/index.md
- Invoices: user-guide/invoices/index.md
- Developer Guide:
- getting-started/index.md
- Installation: getting-started/installation.md
- Databases:
- getting-started/databases/index.md
- Database Types:
- SQLite: getting-started/databases/sqlite.md
- Postgres: getting-started/databases/postgres.md
- MySql: getting-started/databases/mysql.md
- Settings:
- getting-started/settings/index.md
- Social Logins:
- Github: getting-started/settings/social-login/github.md
- Google: getting-started/settings/social-login/google.md
- AWS:
- Setting up: getting-started/settings/AWS/setup.md
# - Feature Flags: getting-started/settings/AWS/feature-flags.md
# - Static Files: getting-started/settings/AWS/static.md
# - Public Media Files: getting-started/settings/AWS/public-media.md
# - Private Media Files: getting-started/settings/AWS/private-media.md
- Common issues / debugging:
- Poetry: debugging/python/poetry.md
- Contributing:
- contributing/index.md
- Setup project: contributing/setup.md
- Style guide: contributing/style-guide.md
- Github Issues: contributing/gh-issues.md
- Ask for help: contributing/ask.md
- Writing Documentation: contributing/writing-documentation.md
- Translations: contributing/translations.md
- Github Project Board: contributing/gh-board.md
- Motivation: contributing/motivation.md
- Development Progression: contributing/development-progression.md
- Taking on a lead position: contributing/lead-position.md
- Changelog:
- changelog/index.md
extra:
analytics:
provider: custom
property: !ENV UMAMI_PAGE_URL
id: !ENV UMAMI_WEBSITE_ID
status:
new: Recently added
deprecated: Deprecated
extra_javascript:
- 'js/extra.js'