-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
56 lines (53 loc) · 1.53 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
site_name: Movary Documentation
site_description: Movary Documentation
repo_url: https://github.com/leepeuker/movary/
edit_uri: edit/main/docs
theme:
name: material
language: en
logo: images/favicon.png
favicon: images/favicon.png
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: indigo
accent: indigo
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: indigo
accent: indigo
features:
- content.action.edit
- content.action.view
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
nav:
- Home: 'index.md'
- Installation:
- Docker (recommended): install/docker.md
- Manual: install/manual.md
- Getting started: 'getting-started.md'
- Configuration: 'configuration.md'
- Features:
- TMDB Data: features/tmdb-data.md
- IMDb Rating: features/imdb-rating.md
- Locations: features/locations.md
- Plex: features/plex.md
- Jellyfin: features/jellyfin.md
- Emby: features/emby.md
- Letterboxd: features/letterboxd.md
- Trakt TV: features/trakt.md
- Netflix: features/netflix.md
- Radarr: features/radarr.md
- Development:
- Setup: development/setup.md
- Directory structure: development/file-structure.md
- How does the backend work?: development/structure.md
- Database migrations: development/database-migrations.md
- FAQ: 'faq.md'