-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
86 lines (79 loc) · 2.34 KB
/
mkdocs.yml
File metadata and controls
86 lines (79 loc) · 2.34 KB
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
site_name: Filetree
site_description: Self-hosted web file manager — no database, simple YAML/JSON config. Browse, upload, preview, and manage files from your browser.
site_url: https://heapoftrash.github.io/filetree/
repo_url: https://github.com/heapoftrash/filetree
repo_name: heapoftrash/filetree
theme:
name: material
custom_dir: docs/overrides
logo: assets/logo.svg
favicon: assets/favicon.svg
palette:
- scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.sections
- navigation.indexes
- navigation.tracking
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- search.highlight
# - toc.integrate
- content.code.annotate
nav:
- Home: index.md
- Features:
- Overview: features/index.md
- Browse & manage: features/browse-manage.md
- Rich previews: features/rich-previews.md
- Secure auth: features/secure-auth.md
- Signed URLs: features/signed-urls.md
- Simple admin: features/simple-admin.md
- Getting Started:
- Overview: getting-started/index.md
- Installation: getting-started/installation.md
- Production: getting-started/production.md
- Configuration:
- Overview: configuration/index.md
- Config file: configuration/config-file.md
- Environment variables: configuration/environment-variables.md
- Authentication:
- Overview: authentication/index.md
- Setup: authentication/setup.md
- OAuth providers: authentication/oauth-providers.md
- API Reference: API.md
markdown_extensions:
- meta
- md_in_html
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
permalink: true
- tables
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
extra_css:
- assets/styles/home.css
- assets/styles/page-meta.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/heapoftrash/filetree
name: GitHub
announce:
title: Filetree is a work in progress.
icon: material/rocket-launch
link: https://github.com/heapoftrash/filetree
plugins:
- search