Skip to content

Commit bde35f3

Browse files
authored
Merge pull request #24 from champ96k/bug-fixes/netlify-issue-fixes
bug fixes: broken link updated
2 parents f6a3474 + 2762bc2 commit bde35f3

File tree

3 files changed

+27
-30
lines changed

3 files changed

+27
-30
lines changed

documentation/docs/installation.md

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ sidebar_position: 2
44

55
# Installation
66

7-
## Adding the Dependency
8-
97
To start using QuantaDB, add the dependency to your `pubspec.yaml` file:
108

119
```yaml
@@ -37,27 +35,10 @@ QuantaDB works on all platforms supported by Dart/Flutter:
3735

3836
- ✅ Android
3937
- ✅ iOS
40-
- ✅ macOS
41-
- ✅ Windows
42-
- ✅ Linux
43-
- ✅ Web (with IndexedDB adapter)
44-
45-
## Build Configuration
46-
47-
Add the following to your `build.yaml` file to configure code generation:
48-
49-
```yaml
50-
targets:
51-
$default:
52-
builders:
53-
quanta_db:
54-
options:
55-
# Enable debug logging
56-
debug: false
57-
58-
# Custom output directory (optional)
59-
output_dir: lib/generated
60-
```
38+
- 🏗️ macOS
39+
- 🏗️ Windows
40+
- 🏗️ Linux
41+
- 🏗️ Web (with IndexedDB adapter)
6142

6243
## Development Dependencies
6344

@@ -66,7 +47,6 @@ For development, you might want to add these optional dependencies:
6647
```yaml
6748
dev_dependencies:
6849
build_runner: ^2.4.0
69-
quanta_db_generator: ^0.0.5
7050
```
7151
7252
## Code Generation
@@ -128,6 +108,6 @@ If you encounter any issues:
128108

129109
## Next Steps
130110

131-
- Read the [Getting Started](getting-started) guide
111+
- Read the [Getting Started Guide](intro)
132112
- Check out the [Examples](https://github.com/champ96k/quanta_db/tree/master/example) directory
133113
- Review the [API Reference](https://quantadb.netlify.app/)

documentation/docs/usage.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_position: 3
66

77
This section covers the basic usage of QuantaDB, from simple key-value operations to advanced features.
88

9-
For more detailed information about specific features, check out our [Features](features) section.
9+
For more detailed information about specific features, check out the individual feature pages in the sidebar (e.g., [Type Safety](features/type-safety), [Data Security](features/data-security), [High Performance](features/high-performance)).
1010

1111
## Basic Operations
1212

@@ -206,7 +206,7 @@ subscription.cancel();
206206

207207
## Next Steps
208208

209-
- Read about [Advanced Features](features/)
210-
- Check out [Code Examples](../code_examples)
211-
- Review [Performance Tips](features/high-performance.md)
212-
- Learn about [Data Security](features/data-security.md)
209+
- Check out [Code Examples](https://github.com/champ96k/quanta_db/tree/master/example)
210+
- Review [Performance Tips](features/high-performance)
211+
- Learn about [Data Security](features/data-security)
212+
- Explore [Type Safety](features/type-safety)

documentation/netlify.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[build]
2+
base = "documentation"
3+
command = "npm run build"
4+
publish = "build"
5+
6+
[build.environment]
7+
NODE_VERSION = "18"
8+
9+
[[redirects]]
10+
from = "/*"
11+
to = "/index.html"
12+
status = 200
13+
14+
[build.processing]
15+
skip_processing = false
16+
[build.processing.html]
17+
pretty_urls = true

0 commit comments

Comments
 (0)