-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
126 lines (123 loc) · 5.63 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
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
site_name: SenseDeep DynamoDB OneTable
site_description: OneTable Documentation
repo_url: https://github.com/sensedeep/dynamodb-onetable
edit_uri: ''
nav:
- Home: index.md
- Getting Started:
- Quick Tour: start/quick-tour.md
- Installing: start/install.md
- Configuring: start/configure.md
- Data Modeling: start/modeling.md
- Typescript: start/typescript.md
- Background:
- Why OneTable?: start/why-onetable.md
- Features: start/features.md
- Samples: start/samples.md
- Contribute: start/contribute.md
- References: start/references.md
- Contact: start/contact.md
- API:
- Table Class:
- api/table/overview.md
- Constructor:
- api/table/constructor/constructor.md
- Crypto: api/table/constructor/crypto.md
- Logging: api/table/constructor/logging.md
- Metrics: api/table/constructor/metrics.md
- Transforms: api/table/constructor/transforms.md
- Value Templates: api/table/constructor/templates.md
- Validations: api/table/constructor/validations.md
- Schemas:
- Data Modeling: api/table/schemas/modeling.md
- Indexes: api/table/schemas/indexes.md
- Params: api/table/schemas/params.md
- Models: api/table/schemas/models.md
- Model Attributes: api/table/schemas/attributes.md
- Contexts: api/table/contexts.md
- Methods: api/table/methods.md
- Examples: api/table/examples.md
- Model Class:
- Overview: api/model/overview.md
- API Parameters: api/model/params.md
- Methods: api/model/methods.md
- Set Expressions: api/model/set.md
- Where Clauses: api/model/where.md
- Examples: api/model/examples.md
- Dynamo Class:
- Constructor: api/dynamo/overview.md
- Error Handling: api/errors.md
- Guides:
- Overview: guides/overview.md
- DynamoDB:
- Intro to DynamoDB: https://www.sensedeep.com/blog/posts/2021/dynamodb-onetable-tour.html
- Data Modeling for DynamoDB: https://www.sensedeep.com/blog/posts/2021/dynamodb-singletable-design.html
- DynamoDB with OneTable Schemas: https://www.sensedeep.com/blog/posts/2021/dynamodb-schemas.html
- DynamoDB OneTable API Overview: https://www.sensedeep.com/blog/posts/2021/dynamodb-onetable-tour.html
- DynamoDB Checklist: https://www.sensedeep.com/blog/posts/2021/dynamodb-checklist.html
- DynamoDB with TypeScript: https://www.sensedeep.com/blog/posts/2021/dynamodb-typescript.html
- DynamoDB Sparse GSIs: https://www.sensedeep.com/blog/posts/2021/sparse-gsi-indexes.html
- DynamoDB Attribute Packing: https://www.sensedeep.com/blog/posts/2021/attribute-packing.html
- Evolving DynamoDB Designs: https://www.sensedeep.com/blog/posts/2021/evolving-dynamodb-designs.html
- SenseDeep Migration Manager: https://www.sensedeep.com/blog/posts/series/dynamodb-studio/migration-manager.html
- SenseDeep DynamoDB Studio: https://www.sensedeep.com/blog/posts/stories/dynamodb-studio.html
- SenseDeep DynamoDB Quick Tour: https://www.sensedeep.com/blog/posts/product/dynamodb-tour.html
- Serverless:
- How to Debug Serverless Apps: https://www.sensedeep.com/blog/posts/stories/how-to-debug-serverless-apps.html
- How to invoke HTTP without Waiting from Lambda: https://www.sensedeep.com/blog/posts/stories/lambda-fast-http.html
- Fast Logging with Lambda: https://www.sensedeep.com/blog/posts/senselogs/serverless-logging.html
- Extensions: extensions.md
- Services:
- DynamoDB Consulting: services/consulting.md
- Blog: https://www.sensedeep.com/blog
theme:
name: material
custom_dir: overrides
features:
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.share
- search.suggest
- toc.follow
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: images/favicon.ico
extra_css:
- css/all.css
extra:
analytics:
provider: custom
# property: G-2ZZBCEQJGK
social:
- icon: fontawesome/brands/github
link: https://github.com/sensedeep/dynamodb-onetable
- icon: fontawesome/brands/facebook
link: https://facebook.com/sensedeepcloud
- icon: fontawesome/brands/flipboard
link: https://flipboard.com/@mobsense/serverless-developer-dlpuqmniz
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/sensedeep
- icon: fontawesome/brands/twitter
link: https://twitter.com/sensedeepcloud
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list