-
Notifications
You must be signed in to change notification settings - Fork 33
/
mkdocs.yml
83 lines (74 loc) · 2.7 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
site_name: Tempest
site_url: https://cashapp.github.io/tempest/
repo_name: cashapp/tempest
repo_url: https://github.com/cashapp/tempest
site_description: "Tempest - Typesafe DynamoDB in Kotlin"
site_author: Square, Inc.
copyright: 'Copyright © 2021 Square, Inc.'
remote_branch: gh-pages
theme:
name: 'material'
favicon: img/favicon.ico
logo: img/cashapp.png
palette:
primary: 'white'
accent: 'green'
extra_css:
- 'css/app.css'
markdown_extensions:
- admonition
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
plugins:
- search
- macros
extra:
versions:
tempest: '1.10.0'
nav:
- 'Overview': index.md
- 'Guides':
- 'Getting Started': guide/getting_started.md
- 'Data Modeling': guide/data_modeling.md
- 'CRUD': guide/crud.md
- 'Optimistic Locking': guide/optimistic_locking.md
- 'Batch Read & Write': guide/batch_read_write.md
- 'Query & Scan': guide/query_scan.md
- 'Transaction': guide/transaction.md
- 'Testing': guide/testing.md
- 'Asynchronous Programming': guide/asynchronous_programming.md
- 'DynamoDB Resources': guide/dynamodb_resources.md
- 'v2 Migration Guide': guide/v2_upgrade_guide.md
- 'Reference':
- 'For AWS SDK 1.x':
- 'tempest': 1.x/tempest/app.cash.tempest/index.md
- 'tempest-testing': 1.x/tempest-testing/app.cash.tempest.testing/index.md
- 'tempest-testing-jvm': 1.x/tempest-testing-jvm/app.cash.tempest.testing/index.md
- 'tempest-testing-docker': 1.x/tempest-testing-docker/app.cash.tempest.testing/index.md
- 'tempest-testing-junit5': 1.x/tempest-testing-junit5/app.cash.tempest.testing/index.md
- 'tempest-testing-junit4': 1.x/tempest-testing-junit4/app.cash.tempest.testing/index.md
- 'For AWS SDK 2.x':
- 'tempest2': 1.x/tempest2/app.cash.tempest2/index.md
- 'tempest2-testing': 1.x/tempest2-testing/app.cash.tempest2.testing/index.md
- 'tempest2-testing-jvm': 1.x/tempest2-testing-jvm/app.cash.tempest2.testing/index.md
- 'tempest2-testing-docker': 1.x/tempest2-testing-docker/app.cash.tempest2.testing/index.md
- 'tempest2-testing-junit5': 1.x/tempest2-testing-junit5/app.cash.tempest2.testing/index.md
- 'tempest2-testing-junit4': 1.x/tempest2-testing-junit4/app.cash.tempest2.testing/index.md
- 'Changelog': changelog.md
- 'Contributing': contributing.md
- 'Code of Conduct': code_of_conduct.md