-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
39 lines (30 loc) · 1.19 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
# See: https://github.com/mkdocs/mkdocs/blob/master/docs/user-guide/configuration.md
site_name: Deepositive
site_description: Web Backend for Deepositive App
site_author: aniketmaithani
repo_url: https://github.com/aniketmaithani/workshop-web
pages:
- Home: 'index.md'
- API:
- 'Overview & Usages': 'api/overview.md'
- 'REST Endpoints': 'api/endpoints.md'
- 'Errors': 'api/errors.md'
- 'Changelog': 'api/changelog.md'
- Backend:
- 'Server Configurations': 'backend/server_config.md'
- 'Coding Rules': 'backend/coding_rules.md'
- 'Release Notes': 'release_notes.md'
theme: 'mkdocs'
copyright: Copyright © 2015, <a href=http://fueled.com>Fueled</a>.
# directory to output HTML build
site_dir: _docs_html
# Determines if a broken link to a page within the documentation is considered
# a warning or an error (link to a page not listed in the pages setting). Set to
# true to halt processing when a broken link is found, false prints a warning.
strict: true
# Determines the address used when running mkdocs serve.
# Set it to 8001, so that it doesn't conflict with django's 8000 port
dev_addr: '127.0.0.1:8001'
markdown_extensions: [smarty, sane_lists]
extra_javascript:
- "js/github_issues_link.js"