You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
To learn more about installation, see our [Installation](https://docs.kuzudb.com/installation) page.
38
+
To learn more about Kuzu, see our [Documentation](https://kuzudb.github.io/docs) and [Blog](https://kuzudb.github.io/blog) page.
51
39
52
40
## Getting Started
53
41
54
-
Refer to our [Getting Started](https://docs.kuzudb.com/get-started/) page for your first example.
42
+
Refer to our [Getting Started](https://kuzudb.github.io/docs/get-started/) page for your first example.
55
43
56
-
## Build from Source
44
+
## Extensions
45
+
Kuzu has an extension framework that users can dynamically load the functionality you need at runtime.
46
+
We've developed a list of [official extensions](https://kuzudb.github.io/docs/extensions/#available-extensions) that you can use to extend Kuzu's functionality.
57
47
58
-
You can build from source using the instructions provided in the [developer guide](https://docs.kuzudb.com/developer-guide).
48
+
Kuzu requires you to install the extension before loading and using it.
49
+
Note that Kuzu no longer provides the official extension server, where you can directly install any official extensions.
59
50
60
-
## Contributing
61
-
We welcome contributions to Kuzu. If you are interested in contributing to Kuzu, please read our [Contributing Guide](CONTRIBUTING.md).
51
+
If you've upgraded to the latest version v0.11.3, Kuzu has pre-installed four commonly used extensions (`algo`, `fts`, `json`, `vector`) for you.
52
+
You do not need to manually INSTALL these extensions.
62
53
63
-
## License
64
-
By contributing to Kuzu, you agree that your contributions will be licensed under the [MIT License](LICENSE).
54
+
For Kuzu versions before v0.11.3, or to install extensions that haven't been pre-installed, you have to set up a local extension server.
55
+
The instructions of setting up a local extension server can be found below.
56
+
57
+
### Host your own extension server
58
+
59
+
The extension server is based on NGINX and is hosted on [GitHub](https://ghcr.io/kuzudb/extension-repo). You can pull the Docker image and run it in your environment:
65
60
66
-
## Support
67
-
We provide professional support for using Kuzu, ensuring timely responses and flexible coverage. Please visit [here](https://kuzudb.com/#support)
68
-
for more information.
61
+
```bash
62
+
docker pull ghcr.io/kuzudb/extension-repo:latest
63
+
docker run -d -p 8080:80 ghcr.io/kuzudb/extension-repo:latest
In this example, the extension server will be available at `http://localhost:8080`. You can then install extensions from your server by appending the `FROM` clause to the `INSTALL` command:
67
+
68
+
```cypher
69
+
INSTALL <EXTENSION_NAME> FROM 'http://localhost:8080/';
70
+
```
71
+
72
+
## Build from Source
73
+
74
+
You can build from source using the instructions provided in the [developer guide](https://kuzudb.github.io/docs/developer-guide).
75
+
76
+
## License
77
+
Kuzu is licensed under the [MIT License](LICENSE).
0 commit comments