forked from go-rel/doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
96 lines (90 loc) · 2.71 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
site_name: REL
site_description: Modern ORM for Golang - Testable, Extendable and Crafted Into a Clean and Elegant API
site_author: REL
site_url: https://go-rel.github.io/
repo_url: https://github.com/go-rel/rel
repo_name: go-rel/rel
edit_uri: ../doc/edit/master/docs/
nav:
- Home: index.md
- Getting Started:
- Introduction: introduction.md
- Basics: basics.md
- Reading and Writing Record: crud.md
- Queries: queries.md
- Mutations: mutations.md
- Association: association.md
- Transactions: transactions.md
- Migration: migration.md
- Instrumentation: instrumentation.md
- Reference:
- github.com/go-rel/rel: reference/rel.md
- github.com/go-rel/rel/group: reference/group.md
- github.com/go-rel/rel/join: reference/join.md
- github.com/go-rel/rel/sort: reference/sort.md
- github.com/go-rel/rel/where: reference/where.md
- github.com/go-rel/reltest: reference/reltest.md
- github.com/go-rel/migration: reference/migration.md
- github.com/go-rel/mysql: reference/adapter-mysql.md
- github.com/go-rel/postgres: reference/adapter-postgres.md
- github.com/go-rel/mssql: reference/adapter-mssql.md
- github.com/go-rel/sqlite3: reference/adapter-sqlite3.md
- github.com/go-rel/sql: reference/adapter-sql.md
- github.com/go-rel/primaryreplica: reference/adapter-primaryreplica.md
- github.com/go-rel/changeset: reference/changeset.md
- Adapters:
- Adapters: adapters.md
- Changelog:
- Release Notes: changelog/release-notes.md
- Upgrading: changelog/upgrading.md
- Discussions: https://github.com/go-rel/rel/discussions
theme:
name: material
favicon: static/favicon.png
icon:
logo: material/database
palette:
primary: light blue
accent: green
features:
- navigation.tabs
custom_dir: docs/overrides
plugins:
- search
- git-revision-date
- macros
- meta-descriptions
- minify:
minify_html: true
minify_js: true
htmlmin_opts:
remove_comments: true
markdown_extensions:
- admonition
- meta
- pymdownx.keys
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed
- toc:
permalink: true
slugify: !!python/name:pymdownx.slugs.uslugify
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
provider: 'github'
user: go-rel
repo: rel
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/go-rel
- icon: fontawesome/brands/gitter
link: https://gitter.im/go-rel/rel
- icon: fontawesome/brands/twitter
link: https://twitter.com/Fs02
google_analytics:
- !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
- auto