python-aternos/mkdocs.yml
DarkCat09 4892430f19 MkDocs, Readme, Files API, Automated session saving, v2.0.1
MkDocs: sphinx docstrings rewritten to google, improved config, written the major part of how-to.
Readme: centered title + logo, added badges, features list, updated changelog.

Improved Files API, added automatical session saving and restoring to Client.
Some changes in makefile and gitignore.
License Notice now refers to all contributors.
2022-08-26 16:14:07 +04:00

42 lines
1.1 KiB
YAML

site_name: Python-Aternos
theme:
name: readthedocs
sticky_navigation: false
include_homepage_in_sidebar: false
prev_next_buttons_location: both
markdown_extensions:
- toc:
permalink: '#'
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: false
nav:
- Home: 'index.md'
- 'How-To Guide':
- 'Logging in': 'howto/auth.md'
- 'Servers': 'howto/server.md'
- 'Whitelist': 'howto/players.md'
- 'Files': 'howto/files.md'
- 'Settings': 'howto/config.md'
- 'Real-time updates': 'howto/websocket.md'
- 'Discord bot': 'howto/discord.md'
- 'API Reference':
- atclient: 'reference/atclient.md'
- atserver: 'reference/atserver.md'
- atplayers: 'reference/atplayers.md'
- atconf: 'reference/atconf.md'
- atfm: 'reference/atfm.md'
- atfile: 'reference/atfile.md'
- atconnect: 'reference/atconnect.md'
- atjsparse: 'reference/atjsparse.md'
- aterrors: 'reference/aterrors.md'
- atwss: 'reference/atwss.md'