Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Book #85

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Book #85

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build_test_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Android
on:
push:
branches: [ main ]
paths-ignore:
- "**/*.md"
pull_request:
branches: [ main, next ]
paths-ignore:
- "**/*.md"

env:
RUST_BACKTRACE: full
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_test_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: iOS
on:
push:
branches: [ main ]
paths-ignore:
- "**/*.md"
pull_request:
branches: [ main, next ]
paths-ignore:
- "**/*.md"

env:
RUST_BACKTRACE: full
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Linux
on:
push:
branches: [ main ]
paths-ignore:
- "**/*.md"
pull_request:
branches: [ main, next ]
paths-ignore:
- "**/*.md"

env:
RUST_BACKTRACE: full
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: macOS
on:
push:
branches: [ main ]
paths-ignore:
- "**/*.md"
pull_request:
branches: [ main, next ]
paths-ignore:
- "**/*.md"

env:
RUST_BACKTRACE: full
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Windows
on:
push:
branches: [ main ]
paths-ignore:
- "**/*.md"
pull_request:
branches: [ main, next ]
paths-ignore:
- "**/*.md"

env:
RUST_BACKTRACE: full
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release_automatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Release Automatic
on:
push:
branches: [ main ]
paths-ignore:
- "**/*.md"
pull_request:
branches: [ main, next ]
paths-ignore:
- "**/*.md"


jobs:
Expand Down
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

[![Crates.io](https://img.shields.io/crates/v/native_db)](https://crates.io/crates/native_db)
[![Documentation](https://docs.rs/native_db/badge.svg)](https://docs.rs/native_db)
[![Help with Chat GPT](https://img.shields.io/badge/Help%20with%20Chat%20GPT-purple?logo=openai)](https://chat.openai.com/g/g-gydO9ATky-native-db-helper)
[![License](https://img.shields.io/crates/l/native_db)](LICENSE)

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
Expand Down
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
Loading