-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
188 lines (188 loc) · 8.85 KB
/
mkdocs.yml
File metadata and controls
188 lines (188 loc) · 8.85 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
site_name: Buildstruct Admen
site_description: Monolithic community system for multi-platform communities.
site_author: BlueShank
repo_url: https://github.com/Buildstruct/bsa-docs
repo_name: BSA Docs
edit_uri: edit/develop/docs/
copyright: Copyright © 2026 BlueShank
docs_dir: docs
hooks:
- hooks/llms_txt.py
plugins:
- search
- macros:
module_name: docs/macros/main
theme:
name: material
logo: logo.svg
favicon: logo.svg
palette:
scheme: slate
features:
- content.action.view
- content.action.edit
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Database:
- Setup: database/setup.md
- Interlink: database/bsa_interlink.md
- Tables:
- Providers: database/tables/bsa_providers.md
- Services: database/tables/bsa_services.md
- Servers: database/tables/bsa_servers.md
- Groups: database/tables/bsa_groups.md
- Group Links: database/tables/bsa_group_links.md
- Players: database/tables/bsa_players.md
- Sessions: database/tables/bsa_sessions.md
- Player Groups: database/tables/bsa_player_groups.md
- Permissions: database/tables/bsa_permissions.md
- Group Permissions: database/tables/bsa_group_permissions.md
- Accounts: database/tables/bsa_accounts.md
- Punishments: database/tables/bsa_punishments.md
- Punishment Links: database/tables/bsa_punishment_links.md
- GeoIP: database/tables/bsa_geoip.md
- Addresses: database/tables/bsa_addresses.md
- GeoBlock: database/tables/bsa_geoblock.md
- GeoBlock Links: database/tables/bsa_geoblock_links.md
- Commands: database/tables/bsa_command.md
- Command Expected: database/tables/bsa_command_expected.md
- Command Acknowledge: database/tables/bsa_command_acknowledge.md
- Routines:
- Server Routines: database/routines/bsa_server_routines.md
- Command Routines: database/routines/bsa_command_routines.md
- Command Cleanup: database/routines/bsa_command_cleanup.md
- Plugins:
- Overview: database/plugins/overview.md
- Logging:
- Logging: database/plugins/logging/bsa_logging.md
- Logging Meta: database/plugins/logging/bsa_logging_meta.md
- Currency:
- Currency: database/plugins/currency/bsa_currency.md
- Currency Sets: database/plugins/currency/bsa_currency_set.md
- Escrow: database/plugins/currency/bsa_currency_escrow.md
- Escrow Sets: database/plugins/currency/bsa_currency_escrow_set.md
- Platforms:
- Garry's Mod:
- Overview: platforms/garrysmod/index.md
- Command:
- Overview: platforms/garrysmod/command/index.md
- Structure: platforms/garrysmod/command/structure.md
- Interface: platforms/garrysmod/command/interface.md
- Database:
- Groups: platforms/garrysmod/database/groups.md
- Interlink: platforms/garrysmod/database/interlink.md
- Permissions: platforms/garrysmod/database/permissions.md
- Players: platforms/garrysmod/database/players.md
- Punishments: platforms/garrysmod/database/punishments.md
- GeoBlock: platforms/garrysmod/database/geoblock.md
- Variables:
- Groups: platforms/garrysmod/database/variables/groups.md
- Permissions: platforms/garrysmod/database/variables/permissions.md
- Players: platforms/garrysmod/database/variables/players.md
- Punishments: platforms/garrysmod/database/variables/punishments.md
- Interface:
- Overview: platforms/garrysmod/interface/index.md
- Classes:
- Button: platforms/garrysmod/interface/classes/button.md
- Button Bar: platforms/garrysmod/interface/classes/buttonbar.md
- Combo Box: platforms/garrysmod/interface/classes/combobox.md
- Container: platforms/garrysmod/interface/classes/container.md
- Context: platforms/garrysmod/interface/classes/context.md
- Dropdown: platforms/garrysmod/interface/classes/dropdown.md
- Frame: platforms/garrysmod/interface/classes/frame.md
- Image: platforms/garrysmod/interface/classes/image.md
- Label: platforms/garrysmod/interface/classes/label.md
- Multi Box: platforms/garrysmod/interface/classes/multibox.md
- Notification: platforms/garrysmod/interface/classes/notification.md
- Panel: platforms/garrysmod/interface/classes/panel.md
- Request: platforms/garrysmod/interface/classes/request.md
- Scroll Panel: platforms/garrysmod/interface/classes/scrollpanel.md
- SubPanel: platforms/garrysmod/interface/classes/subpanel.md
- Tab: platforms/garrysmod/interface/classes/tab.md
- Text Entry: platforms/garrysmod/interface/classes/textentry.md
- Toggle: platforms/garrysmod/interface/classes/toggle.md
- Tooltip: platforms/garrysmod/interface/classes/tooltip.md
- Tree: platforms/garrysmod/interface/classes/tree.md
- Libraries:
- Class: platforms/garrysmod/libraries/class.md
- Command: platforms/garrysmod/libraries/command.md
- Configurate: platforms/garrysmod/libraries/configurate.md
- Dispatcher: platforms/garrysmod/libraries/dispatcher.md
- Datastore: platforms/garrysmod/libraries/datastore.md
- Flux: platforms/garrysmod/libraries/flux.md
- Paint: platforms/garrysmod/libraries/paint.md
- GeoIP: platforms/garrysmod/libraries/geoip.md
- NSS: platforms/garrysmod/libraries/nss.md
- SFB: platforms/garrysmod/libraries/sfb.md
- SFS: platforms/garrysmod/libraries/sfs.md
- Modules:
- Plugins:
- Overview: platforms/garrysmod/modules/plugins.md
- Creating A Plugin: platforms/garrysmod/modules/plugins/creating.md
- Runtime Reference: platforms/garrysmod/modules/plugins/reference.md
- Curated Plugins: platforms/garrysmod/modules/plugins/curated.md
- Repr: platforms/garrysmod/modules/repr.md
- Plugins:
- Currency: platforms/garrysmod/plugins/currency.md
- Logging: platforms/garrysmod/plugins/logging.md
- SourceMod:
- Overview: platforms/source/index.md
- Source.NET:
- Overview: platforms/sourcenet/index.md
- Website:
- Overview: platforms/website/index.md
- API:
- Overview: platforms/website/api/index.md
- Public:
- Groups: platforms/website/api/public/groups.md
- Permissions: platforms/website/api/public/permissions.md
- Players: platforms/website/api/public/players.md
- Providers: platforms/website/api/public/providers.md
- Punishments: platforms/website/api/public/punishments.md
- Servers: platforms/website/api/public/servers.md
- Services: platforms/website/api/public/services.md
- Private:
- Groups: platforms/website/api/private/groups.md
- Permissions: platforms/website/api/private/permissions.md
- Players: platforms/website/api/private/players.md
- Providers: platforms/website/api/private/providers.md
- Punishments: platforms/website/api/private/punishments.md
- Servers: platforms/website/api/private/servers.md
- Services: platforms/website/api/private/services.md
- Commands: platforms/website/api/private/commands.md
- S&Box:
- Overview: platforms/s&box/index.md
- Rust:
- Overview: platforms/rust/index.md
- Minecraft:
- Overview: platforms/minecraft/index.md
- Terraria:
- Overview: platforms/terraria/index.md
- Hytale:
- Overview: platforms/hytale/index.md
- Project Zomboid:
- Overview: platforms/pzomboid/index.md
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.progressbar
- pymdownx.smartsymbols
- pymdownx.escapeall:
hardbreak: true
- toc:
permalink: true