-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
41 lines (33 loc) · 826 Bytes
/
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
site_name: 'Featuren'
site_description: 'A simple application for managing your features in production.'
site_url: 'https://jairojair.github.io/featuren/'
repo_name: 'jairojair/featuren'
repo_url: 'https://github.com/jairojair/featuren'
theme:
name: 'material'
logo:
icon: 'done_all'
palette:
primary: 'white'
accent: 'green'
extra_css:
- 'assets/stylesheets/extra.css'
# Extensions
markdown_extensions:
- admonition
- footnotes
- codehilite:
linenums: true
- toc:
permalink: '#'
- pymdownx.superfences
nav:
- Introduction: 'index.md'
- Quickstart: 'started.md'
- API documentation:
- Authentication: 'api/auth.md'
- Users: 'api/users.md'
- Services: 'api/services.md'
- Features: 'api/features.md'
- Tutorial: 'tutorial.md'
dev_addr: '0.0.0.0:7000'