Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
52 changes: 52 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Deploy Docusaurus site

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: website/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/build

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
_site/
*.dic

# Ignore root-level Python scripts
/*.py
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"chat.tools.terminal.autoApprove": {
"/^cd /Users/danshalev/docs-staging && python3 migrate\\.py$/": {
"approve": true,
"matchCommandLine": true
},
"npm run build": true
}
}
44 changes: 42 additions & 2 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -740,15 +740,55 @@ abc
upperCamelCase
shiftLeft
shiftRight

DBaaS
GCP
VPC
VPCs
BYOC

memoryInfo
FDB
xlarge
SaaS
GCP's
Fusce
Lorem
Pellentesque
adipiscing
aliquam
amet
consectetur
consequat
dignissim
elementum
elit
eros
ipsum
rhoncus
tempor
ultricies
OOM
NetworkPolicy
NetworkPolicies
SNI
TCP
ACLs
NOAUTH
NOPERM
SyntaxError
onboarding
runtimes
JVM
CLIs
backends
microservices
serverless
OSS
recency
createdAt
subnets
balancer
balancers
runbooks
IAM
OLTP
SLOs
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

15 changes: 2 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,6 @@

# https://docs.falkordb.com

## Build


# Build

```bash
bundle install
bundle exec jekyll build
```

# Run

```bash
bundle exec jekyll serve
```
See the `website/` directory for Docusaurus documentation setup.
1 change: 0 additions & 1 deletion References.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: "References"
description: Learn more about the Technology behind FalkorDB
nav_order: 998
---

# References
Expand Down
38 changes: 0 additions & 38 deletions _config.yml

This file was deleted.

99 changes: 0 additions & 99 deletions _includes/code_tabs.html

This file was deleted.

36 changes: 0 additions & 36 deletions _includes/components/sidebar.html

This file was deleted.

13 changes: 0 additions & 13 deletions _includes/head_custom.html

This file was deleted.

2 changes: 0 additions & 2 deletions agentic-memory/cognee.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: "Cognee"
parent: "Agentic Memory"
nav_order: 2
description: "Build flexible agentic memory with Cognee and FalkorDB"
---

Expand Down
2 changes: 0 additions & 2 deletions agentic-memory/graphiti-mcp-server.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: "Graphiti MCP Server"
parent: "Agentic Memory"
nav_order: 3
description: "Run Graphiti MCP server with FalkorDB for AI agent memory in Claude Desktop and other MCP clients"
---

Expand Down
2 changes: 0 additions & 2 deletions agentic-memory/graphiti.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
title: "Graphiti"
parent: "Agentic Memory"
nav_order: 1
description: "Build temporally-aware knowledge graphs with Graphiti and FalkorDB"
---

Expand Down
2 changes: 0 additions & 2 deletions agentic-memory/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
title: "Agentic Memory"
description: "Learn how to implement agentic memory with FalkorDB for AI agents"
has_children: true
nav_order: 11
---

# Agentic Memory
Expand Down
4 changes: 0 additions & 4 deletions algorithms/betweenness-centrality.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
---
title: "Betweenness Centrality"
description: "Measures the importance of nodes based on the number of shortest paths that pass through them."
parent: "Algorithms"
redirect_from:
- /algorithms/betweenness_centrality.html
- /algorithms/betweenness_centrality
---

# Betweenness Centrality
Expand Down
Loading