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
Adding functionality for the JSON module to have commands displayed on the Valkey Website (valkey-io#230)
### Description
This PR will add the JSON commands on the Valkey website. Note that this
PR was created off of a branch of the [bloom filter documentation
PR](valkey-io#212). Merge
conflicts will occur if that PR needs to be changed so I will update
accordingly.
Example:
<img width="958" alt="Screenshot 2025-04-02 at 5 10 01 PM"
src="https://github.com/user-attachments/assets/0e4e7b6f-6a82-4757-a70f-e320dc9cae00"
/>
### Check List
- [ X] Commits are signed per the DCO using `--signoff`
By submitting this pull request, I confirm that my contribution is made
under the terms of the BSD-3-Clause License.
---------
Signed-off-by: zackcam <[email protected]>
Signed-off-by: Nikhil Manglore <[email protected]>
Signed-off-by: Nikhil Manglore <[email protected]>
Co-authored-by: zackcam <[email protected]>
Signed-off-by: Shai Zarka <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Valkey.io website
2
2
3
3
This repo contains the source for the valkey.io website (build scripts, template, blog posts, stylesheets, etc.).
4
-
The build integrates content from [`valkey-io/valkey-doc`](https://github.com/valkey-io/valkey-doc) and the commands definitions from [`valkey-io/valkey`](https://github.com/valkey-io/valkey) and [`valkey-io/valkey-bloom`](https://github.com/valkey-io/valkey-bloom) (see [Build Locally](#build-locally) below for more details).
4
+
The build integrates content from [`valkey-io/valkey-doc`](https://github.com/valkey-io/valkey-doc) and the commands definitions from [`valkey-io/valkey`](https://github.com/valkey-io/valkey), [`valkey-io/valkey-bloom`](https://github.com/valkey-io/valkey-bloom), and [`valkey-io/valkey-json`](https://github.com/valkey-io/valkey-json) (see [Build Locally](#build-locally) below for more details)
5
5
6
6
## Contributing
7
7
@@ -64,7 +64,7 @@ Commit your changes to your local copy of `valkey-io/valkey-doc`.
64
64
### Building the command reference
65
65
66
66
The command reference (i.e. `/commands/set/`, `/commands/get/`, `/commands/lolwut/`) sources information from `valkey-io/valkey`, `valkey-io/valkey-bloom`, and `valkey-io/valkey-doc`.
67
-
`valkey-io/valkey`and `valkey-io/valkey-bloom` provides the command metadata (items like computational complexity, version history, arguments, etc) whilst `valkey-io/valkey-doc` provides the command description and the command reply.
67
+
`valkey-io/valkey`, `valkey-io/valkey-bloom`and `valkey-io/valkey-json` provides the command metadata (items like computational complexity, version history, arguments, etc) whilst `valkey-io/valkey-doc` provides the command description and the command reply.
68
68
69
69
```mermaid
70
70
flowchart TD
@@ -75,13 +75,13 @@ flowchart TD
75
75
H --> J[Files: /resp2_replies.json,<br/>/resp3_replies.json] --> Z[Command Reply]
76
76
```
77
77
78
-
Let's say that this repo and your local copy of `valkey-io/valkey-doc`, `valkey-io/valkey-bloom` and `valkey-io/valkey` reside in the same directories.
78
+
Let's say that this repo and your local copy of `valkey-io/valkey-doc`, `valkey-io/valkey-bloom`, `valkey-io/valkey-json`, and `valkey-io/valkey` reside in the same directories.
79
79
First, stop the `zola serve` process if you're running it.
80
80
From the root directory of this repo run:
81
81
82
82
```shell
83
83
# You should only need to run this once or when you add a new command.
0 commit comments