Skip to content

Commit

Permalink
docs: init book
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-herlemont committed Jan 3, 2024
1 parent 30c300d commit cc089dc
Show file tree
Hide file tree
Showing 17 changed files with 1,029 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ package.json
*.expanded.rs

# Related to [Why do binaries have Cargo.lock in version control, but not libraries?](https://doc.rust-lang.org/cargo/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries)
Cargo.lock
Cargo.lock

./collected_comments.txt
1 change: 1 addition & 0 deletions book/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
book
6 changes: 6 additions & 0 deletions book/book.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[book]
authors = ["Vincent Herlemont"]
language = "en"
multilingual = false
src = "src"
title = "Native DB"
12 changes: 12 additions & 0 deletions book/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Summary

- [Introduction](./introduction.md)
- [Basics](./basics.md)
- [Data Modeling](./data-modeling.md)
- [CRUD operations](./crud-operations.md)
- [Advanced queries](./advanced-queries.md)
- [Data migration](./data-migration.md)
- [Watching real-time updates](./wathing-real-time-updates.md)
- [Performance optimization](./performance-optimization.md)
- [Troubleshooting and Common Pitfalls](./troubleshooting-and-common-pitfalls.md)
- [Beyond the Basics](./beyond-the-basics.md)
1 change: 1 addition & 0 deletions book/src/advanced-queries.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Advanced queries
1 change: 1 addition & 0 deletions book/src/basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Basics
1 change: 1 addition & 0 deletions book/src/beyond-the-basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Beyond the Basics
1 change: 1 addition & 0 deletions book/src/crud-operations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CRUD operations
1 change: 1 addition & 0 deletions book/src/data-migration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Data migration
1 change: 1 addition & 0 deletions book/src/data-modeling.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Data Modeling
1 change: 1 addition & 0 deletions book/src/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Installation
1 change: 1 addition & 0 deletions book/src/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Introduction
1 change: 1 addition & 0 deletions book/src/performance-optimization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Performance optimization
1 change: 1 addition & 0 deletions book/src/troubleshooting-and-common-pitfalls.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Troubleshooting and Common Pitfalls
1 change: 1 addition & 0 deletions book/src/wathing-real-time-updates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Watching real-time updates
Loading

0 comments on commit cc089dc

Please sign in to comment.