-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
470 lines (459 loc) · 15.3 KB
/
mkdocs.yml
File metadata and controls
470 lines (459 loc) · 15.3 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
site_name: Plateforme Docs
site_description: The Python framework for Data Applications
site_author: Plateforme
site_url: https://docs.plateforme.io
copyright: Plateforme, All rights reserved
repo_name: plateformeio/plateforme
repo_url: https://github.com/plateformeio/plateforme
edit_uri: https://github.com/plateformeio/docs/blob/main/docs
docs_dir: docs
site_dir: build
nav:
- Overview: index.md
- Get started:
- start/index.md
- Installation: start/install.md
- First steps: start/first-steps.md
- Features: start/features.md
- Getting help: start/help.md
- Learn:
- learn/index.md
- Guides: learn/guides/index.md
- Concepts: learn/concepts/index.md
- Examples:
- examples/index.md
- Basic: examples/basic.md
# TODO: - Basic w/ associations: examples/basic-associations.md
# TODO: - Basic w/ database: examples/basic-database.md
# TODO: - Basic w/ inheritance: examples/basic-inheritance.md
# TODO: - Basic w/ packages: examples/basic-packages.md
- Basic w/ services: examples/basic-services.md
- Missions: examples/missions.md
- Learn:
- learn/index.md
- Guides:
- learn/guides/index.md
- Installing Python: learn/guides/install-python.md
- Creating a project: learn/guides/create-project.md
- Running an application: learn/guides/run-application.md
- Using a code editor: learn/guides/use-editor.md
- Using tools: learn/guides/use-tools.md
- Development: learn/guides/development.md
- Testing: learn/guides/testing.md
- Concepts:
- learn/concepts/index.md
- Resources: learn/concepts/resources.md
- Models: learn/concepts/models.md
- Fields: learn/concepts/fields.md
- Types: learn/concepts/types.md
- Associations: learn/concepts/associations.md
- Databases: learn/concepts/databases.md
- Queries: learn/concepts/queries.md
- Services: learn/concepts/services.md
- Routes: learn/concepts/routes.md
- Selectors: learn/concepts/selectors.md
- Applications: learn/concepts/applications.md
- Packages: learn/concepts/packages.md
- Namespaces: learn/concepts/namespaces.md
- Settings: learn/concepts/settings.md
- Environment: learn/concepts/environment.md
- Runtime: learn/concepts/runtime.md
- Examples:
- examples/index.md
- Basic: examples/basic.md
# TODO: - Basic w/ associations: examples/basic-associations.md
# TODO: - Basic w/ database: examples/basic-database.md
# TODO: - Basic w/ inheritance: examples/basic-inheritance.md
# TODO: - Basic w/ packages: examples/basic-packages.md
- Basic w/ services: examples/basic-services.md
- Missions: examples/missions.md
- Commands:
- commands/index.md
- Init: commands/init.md
- Install: commands/install.md
- Build: commands/build.md
- Clean: commands/clean.md
- Deploy: commands/deploy.md
- Drop: commands/drop.md
- Inspect: commands/inspect.md
- Migrate: commands/migrate.md
- Publish: commands/publish.md
- Run: commands/run.md
- Shell: commands/shell.md
- Reference:
- reference/index.md
- Core:
- reference/core/index.md
- Resources: reference/core/resources.md
- Associations: reference/core/associations.md
- Specifications: reference/core/specifications.md
- Services: reference/core/services.md
- Selectors: reference/core/selectors.md
- Applications: reference/core/applications.md
- Packages: reference/core/packages.md
- Namespaces: reference/core/namespaces.md
- Config: reference/core/config.md
- Settings: reference/core/settings.md
- Environment: reference/core/environment.md
- Runtime: reference/core/runtime.md
- Events: reference/core/events.md
- Miscellaneous: reference/core/miscellaneous.md
- Schema:
- reference/schema/index.md
- Models: reference/schema/models.md
- Fields: reference/schema/fields.md
- Aliases: reference/schema/aliases.md
- Miscellaneous: reference/schema/miscellaneous.md
- Core: reference/schema/core.md
- Decorators: reference/schema/decorators.md
- Database:
- reference/database/index.md
- Managers: reference/database/managers.md
- Routing: reference/database/routing.md
- Sessions: reference/database/sessions.md
- Bulk: reference/database/bulk.md
- Metadata: reference/database/metadata.md
- Types: reference/database/types.md
- Utilities: reference/database/utilities.md
- Engines: reference/database/engines.md
- Events: reference/database/events.md
- Expressions: reference/database/expressions.md
- ORM: reference/database/orm.md
- Pool: reference/database/pool.md
- API:
- reference/api/index.md
- Managers: reference/api/managers.md
- Routing: reference/api/routing.md
- Parameters: reference/api/parameters.md
- Dependencies: reference/api/dependencies.md
- Exceptions: reference/api/exceptions.md
- Middleware: reference/api/middleware.md
- I/O: reference/api/data.md
- Security: reference/api/security.md
- Status: reference/api/status.md
- Types:
- reference/types/index.md
- Extra: reference/types/extra.md
- About:
- Support: about/support.md
- Roadmap: about/roadmap.md
- Releases: about/releases.md
- Security: about/security.md
- License: about/license.md
- Community:
- People: about/community/people.md
- Insiders: about/community/insiders.md
- Discussions: about/community/discussions.md
- Contributing: about/community/contributing.md
- Covenant: about/community/covenant.md
- Issues: about/community/issues.md
theme:
name: material
custom_dir: public
favicon: favicon.ico
icon:
logo: logo
repo: octicons/git-branch-24
search: octicons/search-24
share: octicons/share-24
tag:
draft: octicons/issue-draft-16
external: octicons/link-external-16
internal: octicons/lock-16
domain-api: octicons/apps-16
domain-cli: octicons/terminal-16
domain-core: octicons/cpu-16
domain-database: octicons/database-16
domain-schema: octicons/ai-model-16
domain-types: octicons/typography-16
repo: octicons/repo-16
repo-api: octicons/repo-16
repo-database: octicons/repo-16
repo-schema: octicons/repo-16
features:
- content.action.edit
- content.code.annotate
- content.code.copy
- content.code.select
- content.footnote.tooltips
- content.tabs.link
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.instant.prefetch
- navigation.path
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: custom
accent: amber
toggle:
icon: octicons/moon-24
name: Switch to light preference
- media: '(prefers-color-scheme: light)'
scheme: default
primary: custom
accent: amber
toggle:
icon: octicons/sun-24
name: Switch to system mode
- media: '(prefers-color-scheme)'
primary: custom
accent: amber
toggle:
icon: octicons/light-bulb-24
name: Switch to dark mode
extra:
analytics:
provider: posthog
property: phc_XLaOpYPOTvcO1ubYF4mDtK9eDNiVk3ul3dcMqW4IcWx
host: https://d2r3huvf7ki0sy.cloudfront.net
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! You can submit a
<a href="https://github.com/plateformeio/docs" target="_blank" rel="noopener">pull request</a>
if you want to help us improve this page!
links:
home: https://plateforme.io
mail:
community: community@plateforme.io
contact: contact@plateforme.io
security: security@plateforme.io
sales: sales@plateforme.io
sponsors: sponsors@plateforme.io
repo:
core: https://github.com/plateformeio/plateforme
docs: https://github.com/plateformeio/docs
social:
discord: https://discord.com/channels/1339759418908217374
github: https://github.com/plateformeio
pypi: https://pypi.org/project/plateforme
reddit: https://www.reddit.com/r/plateformeio
x: https://x.com/plateformeio
sponsors: https://github.com/sponsors/plateformeio
stars: https://img.shields.io/github/stars/plateformeio/plateforme?style=social
index:
commands: commands
concepts: learn/concepts
contributing: about/community/contributing
covenant: about/community/covenant
discussions: about/community/discussions
features: start/features
guides: learn/guides
help: start/help
insiders: about/community/insiders
issues: about/community/issues
license: about/license
people: about/community/people
releases: about/releases
reference: reference
roadmap: about/roadmap
security: about/security
start: start
support: about/support
social:
- icon: fontawesome/brands/github
link: https://github.com/plateformeio
name: Plateforme on GitHub
- icon: fontawesome/brands/python
link: https://pypi.org/project/plateforme
name: Plateforme on PyPI
- icon: fontawesome/brands/x-twitter
link: https://x.com/plateformeio
name: Plateforme on 𝕏
- icon: fontawesome/brands/reddit
link: https://www.reddit.com/r/plateformeio
name: Plateforme on Reddit
- icon: fontawesome/brands/discord
link: https://discord.com/channels/1339759418908217374
name: Plateforme on Discord
tags:
Draft: draft
External: external
Internal: internal
API: domain-api
CLI: domain-cli
Core: domain-core
Database: domain-database
Schema: domain-schema
Types: domain-types
Plateforme: repo
FastAPI: repo-api
Pydantic: repo-schema
SQLAlchemy: repo-database
Starlette: repo-api
version:
default: latest
alias: true
provider: mike
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
actions:
- accept
- reject
extra_css:
- assets/stylesheets/palette.css
- assets/stylesheets/fonts.css
- assets/stylesheets/animations.css
- assets/stylesheets/layout.css
- assets/stylesheets/admonitions.css
- assets/stylesheets/tags.css
extra_javascript:
- https://unpkg.com/mermaid@11/dist/mermaid.min.js
- assets/javascripts/feedback.js
- assets/javascripts/header.js
- assets/javascripts/mermaid.js
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.snippets
- pymdownx.superfences:
preserve_tabs: true
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
hooks:
- scripts/sync.py
- scripts/watch.py
plugins:
- git-committers:
enabled: !ENV [PLUGINS_GIT_COMMITTERS, false]
repository: plateformeio/docs
branch: main
token: !ENV [GH_TOKEN, null]
- git-revision-date-localized:
enabled: !ENV [PLUGINS_GIT_DATE, false]
enable_creation_date: true
type: timeago
- macros
- meta
- mike:
alias_type: symlink
canonical_version: latest
- mkdocstrings:
enabled: !ENV [PLUGINS_MKDOCSTRINGS, false]
default_handler: python
handlers:
python:
options:
docstring_style: auto
filters: ['!^_']
inherited_members: true
load_external_modules: true
members_order: source
merge_init_into_class: true
show_root_heading: true
show_signature_annotations: true
show_source: true
show_symbol_type_heading: true
show_symbol_type_toc: true
separate_signature: true
signature_crossrefs: true
docstring_options:
ignore_init_summary: true
method: heuristics
style_order:
- google
- sphinx
default: google
extensions:
- griffe_autodocstringstyle
- griffe_sphinx
preload_modules:
- fastapi
- pydantic
- pydantic_core
- sqlalchemy
- starlette
import:
- url: https://docs.python.org/3/objects.inv
domains: [py, std]
- url: https://fastapi.tiangolo.com/objects.inv
domains: [py, std]
- url: https://docs.pydantic.dev/latest/objects.inv
domains: [py, std]
- url: https://docs.sqlalchemy.org/en/20/objects.inv
domains: [py, std]
- url: https://encode.github.io/starlette/objects.inv
domains: [py, std]
- optimize:
enabled: !ENV [PLUGINS_OPTIMIZE, false]
- search
- social:
cards_layout_options:
background_color: transparent
background_image: layouts/background.png
color: '#cadae8'
font_family: Geist
logo: layouts/logo.svg
- tags:
listings_toc: false
shadow: false
shadow_on_serve: true
shadow_tags:
- Draft
tags_allowed: !!python/name:scripts.config.TAGS
tags_hierarchy: true
tags_slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
tags_sort_by: !!python/name:scripts.config.tag_name_index
- termynal:
prompt_literal_start:
- '$'
- typeset
watch:
- docs
- public
- src