-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
57 lines (52 loc) · 1.8 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
57
site_name: 'JSTP Documentation'
repo_name: 'metarhia/jstp'
repo_url: 'https://github.com/metarhia/jstp'
docs_dir: 'doc'
nav:
- 'README.md'
- 'Tutorial':
- 'Intro': 'tutorial/intro.md'
- 'Setup': 'tutorial/setup.md'
- 'Creating applications': 'tutorial/creating-applications.md'
- 'Initializing a server': 'tutorial/initializing-a-server.md'
- 'Establishing client connection': 'tutorial/establishing-client-connection.md'
- 'Remote APIs': 'tutorial/remote-apis.md'
- 'Remote events': 'tutorial/remote-events.md'
- 'Example: chat application': 'tutorial/example-chat-application.md'
- 'API Documentation':
- 'Application': 'api/application.md'
- 'Connection': 'api/connection.md'
- 'Session': 'api/session.md'
- 'RemoteProxy': 'api/remote-proxy.md'
- 'Errors': 'api/errors.md'
- 'Transport': 'api/transport.md'
- 'Available transports':
- 'net': 'api/net.md'
- 'tls': 'api/tls.md'
- 'ws': 'api/ws.md'
- 'ws-browser': 'api/ws-browser.md'
- 'wss': 'api/wss.md'
- 'SimpleConnectPolicy': 'api/simple-connect-policy.md'
- 'SessionStorageProvider': 'api/session-storage-provider.md'
- 'SimpleSessionStorageProvider': 'api/simple-session-storage-provider.md'
- 'AuthPolicy': 'api/auth-policy.md'
- 'Client': 'api/client.md'
- 'Server': 'api/server.md'
- 'JSTP CLI': 'cli/README.md'
theme:
name: 'material'
favicon: 'favicon.png'
palette:
primary: 'teal'
accent: 'blue'
logo: 'https://cdn.rawgit.com/metarhia/Metarhia/master/Logos/metarhia-logo.svg'
extra:
social:
- type: 'github'
link: 'https://github.com/metarhia'
markdown_extensions:
- mdx_truly_sane_lists
- codehilite:
guess_lang: false
- toc:
permalink: true