Skip to content

Commit 7091760

Browse files
committed
First published version
1 parent 185312f commit 7091760

30 files changed

+4007
-290
lines changed

Gitbook/convert_gitbook_to_mdx3.py

Lines changed: 1777 additions & 0 deletions
Large diffs are not rendered by default.

website/docs/README.mdx

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
11
---
2-
description: >-
3-
This is the ObjectBox documentation for our C and C++ APIs. We strive to
4-
provide you with the easiest and fastest solution to store and retrieve data.
2+
title: "ObjectBox C / C++ Database"
3+
description: "This is the ObjectBox documentation for our C and C++ APIs. We strive to provide you with the easiest and fastest solution to store and retrieve data."
4+
keywords:
5+
- objectbox
6+
- c++
7+
- cpp
8+
- cmake
9+
- database
10+
- readme
511
---
612

13+
714
import Tabs from "@theme/Tabs"
815
import TabItem from "@theme/TabItem"
916

1017

1118

19+
20+
import { TechnicalArticleSchema } from '@site/src/components/Schema';
21+
22+
<TechnicalArticleSchema
23+
headline="ObjectBox C / C++ Database"
24+
description="This is the ObjectBox documentation for our C and C++ APIs. We strive to provide you with the easiest and fastest solution to store and retrieve data."
25+
url="https://cpp.objectbox.io/README"
26+
datePublished="2025-07-21"
27+
dateModified="2025-07-21"
28+
/>
29+
1230
# ObjectBox C / C++ Database
1331

1432
This is the ObjectBox documentation for our C and C++ APIs. We strive to provide you with the easiest and fastest solution to store and retrieve data.

website/docs/automated-frontmatter-and-schema-generator-v4.py

Lines changed: 520 additions & 0 deletions
Large diffs are not rendered by default.

website/docs/dev-tools-and-debugging.mdx

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
11
---
2-
description: >-
3-
ObjectBox has tools that help during development. Learn more about looking at
4-
data inside the database and how to enable debug logs for additional
5-
information.
2+
title: "Dev Tools and Debugging - ObjectBox C++"
3+
description: "ObjectBox has tools that help during development. Learn more about looking at data inside the database and how to enable debug logs for additional information."
4+
keywords:
5+
- objectbox
6+
- c++
7+
- cpp
8+
- cmake
9+
- database
10+
- tools
611
---
712

13+
814
import Tabs from "@theme/Tabs"
915
import TabItem from "@theme/TabItem"
1016

1117

1218

19+
20+
import { TechnicalArticleSchema } from '@site/src/components/Schema';
21+
22+
<TechnicalArticleSchema
23+
headline="Dev Tools and Debugging - ObjectBox C++"
24+
description="ObjectBox has tools that help during development. Learn more about looking at data inside the database and how to enable debug logs for additional information."
25+
url="https://cpp.objectbox.io/dev-tools-and-debugging"
26+
datePublished="2025-07-21"
27+
dateModified="2025-07-21"
28+
/>
29+
1330
# Dev Tools and Debugging
1431

1532
ObjectBox has tools that help during development. Learn more about looking at data inside the database and how to enable debug logs for additional information.
@@ -32,7 +49,7 @@ Starting server on http://0.0.0.0:8081
3249

3350
Opening the URL `http://localhost:8081` with your browser will open the ObjectBox Admin UI:
3451

35-
<img src="https://2056134408-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LETufmyus5LFkviJjr4%2Fuploads%2F4l4B1wXLIHFxdoxtBEAn%2Fadmin-data.png?alt=media&#x26;token=b2faf98f-75a0-448b-8154-4cefcdcaa05f" alt="" /><figcaption></figcaption>
52+
<img src="https://2056134408-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LETufmyus5LFkviJjr4%2Fuploads%2F4l4B1wXLIHFxdoxtBEAn%2Fadmin-data.png?alt=media&#x26;token=b2faf98f-75a0-448b-8154-4cefcdcaa05f" alt="" />
3653

3754
:::info
3855
See [ObjectBox Admin](https://docs.objectbox.io/data-browser) Documentation for further details and to download developer-friendly front-end launcher shell script.

website/docs/entity-annotations.mdx

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
11
---
2-
description: >-
3-
ObjectBox database persistence for C and C++ is based on objects. Learn how to
4-
persist entities with entity annotations in this tutorial section.
2+
title: "Entity Annotations in ObjectBox C++"
3+
description: "ObjectBox database persistence for C and C++ is based on objects. Learn how to persist entities with entity annotations in this tutorial section."
4+
keywords:
5+
- objectbox
6+
- c++
7+
- cpp
8+
- cmake
9+
- database
10+
- entities
511
---
612

13+
714
import Tabs from "@theme/Tabs"
815
import TabItem from "@theme/TabItem"
916

1017

1118

19+
20+
import { TechnicalArticleSchema } from '@site/src/components/Schema';
21+
22+
<TechnicalArticleSchema
23+
headline="Entity Annotations in ObjectBox C++"
24+
description="ObjectBox database persistence for C and C++ is based on objects. Learn how to persist entities with entity annotations in this tutorial section."
25+
url="https://cpp.objectbox.io/entity-annotations"
26+
datePublished="2025-07-21"
27+
dateModified="2025-07-21"
28+
/>
29+
1230
# Entity Annotations
1331

1432
ObjectBox database persistence for C and C++ is based on objects. Learn how to persist entities with entity annotations in this tutorial section.

website/docs/faq.mdx

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
---
2-
description: Frequently asked questions about ObjectBox C and C++.
2+
title: "ObjectBox C++ FAQ"
3+
description: "Frequently asked questions about ObjectBox C and C++."
4+
keywords:
5+
- objectbox
6+
- c++
7+
- cpp
8+
- cmake
9+
- database
10+
- faq
311
---
412

13+
514
import Tabs from "@theme/Tabs"
615
import TabItem from "@theme/TabItem"
716

817

918

19+
20+
import { FAQSchema, TechnicalArticleSchema } from '@site/src/components/Schema';
21+
22+
<TechnicalArticleSchema
23+
headline="ObjectBox C++ FAQ"
24+
description="Frequently asked questions about ObjectBox C and C++."
25+
url="https://cpp.objectbox.io/faq"
26+
datePublished="2025-07-21"
27+
dateModified="2025-07-21"
28+
/>
29+
1030
# FAQ
1131

1232
Frequently asked questions about ObjectBox C and C++.

0 commit comments

Comments
 (0)