Skip to content

Commit 2763076

Browse files
committed
Missed renames
1 parent dacab5f commit 2763076

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

33
Copyright (c) 2024-2025 Kùzu Inc.
4+
Copyright (c) 2025-2026 Ladybug Memory Inc.
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Kùzu API Server
1+
# Ladybug API Server
22

3-
REST-style API server for the Kùzu graph database powered by Express.js.
3+
REST-style API server for the Ladybug graph database powered by Express.js.
44

55
## Get started
66

7-
Kùzu API Server is launched as a Docker container. Please refer to the [Docker documentation](https://docs.docker.com/get-docker/) for details on how to install and use Docker.
7+
Ladybug API Server is launched as a Docker container. Please refer to the [Docker documentation](https://docs.docker.com/get-docker/) for details on how to install and use Docker.
88

9-
To access an existing Kùzu database, you can mount its path to the `/database` directory as follows:
9+
To access an existing Ladybug database, you can mount its path to the `/database` directory as follows:
1010

1111
```bash
1212
docker run -p 8000:8000 \
@@ -25,7 +25,7 @@ If the launching is successful, you should see the logs similar to the following
2525
```
2626
[00:46:50.833] INFO (1): Access mode: READ_WRITE
2727
[00:46:50.834] INFO (1): CORS enabled for all origins
28-
[00:46:50.853] INFO (1): Version of Kùzu: 0.3.1
28+
[00:46:50.853] INFO (1): Version of Ladybug: 0.3.1
2929
[00:46:50.854] INFO (1): Deployed server started on port: 8000
3030
```
3131

@@ -104,7 +104,7 @@ Please refer to the official Podman docs for [mounting external volumes](https:/
104104

105105
## API endpoints
106106

107-
The Kùzu API server provides the following endpoints:
107+
The Ladybug API server provides the following endpoints:
108108

109109
### `GET /`:
110110

@@ -326,4 +326,4 @@ for both `amd64` and `arm64` platforms.
326326

327327
## Contributing
328328

329-
We welcome contributions to Kùzu API Server. By contributing to Kùzu API Server, you agree that your contributions will be licensed under the [MIT License](LICENSE).
329+
We welcome contributions to Ladybug API Server. By contributing to Ladybug API Server, you agree that your contributions will be licensed under the [MIT License](LICENSE).

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ database
4949
.then((res) => {
5050
const version = res.version;
5151
const storageVersion = res.storageVersion;
52-
logger.info("Version of Kùzu: " + version);
53-
logger.info("Storage version of Kùzu: " + storageVersion);
52+
logger.info("Version of Ladybug: " + version);
53+
logger.info("Storage version of Ladybug: " + storageVersion);
5454
app.listen(PORT, () => {
5555
logger.info("Deployed server started on port: " + PORT);
5656
});
5757
})
5858
.catch((err) => {
59-
logger.error("Error getting version of Kùzu: " + err);
59+
logger.error("Error getting version of Ladybug: " + err);
6060
});

0 commit comments

Comments
 (0)