-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to Prod: About page & persistence (#25)
* adds commands to top nav (#19) Signed-off-by: Kyle J. Davis <kyledvs@amazon.com> * Add the ability to pull in docs from `valkey-doc` (#22) * adds support for pulling in valkey-docs Signed-off-by: Kyle J. Davis <kyledvs@amazon.com> * one more change to layout Signed-off-by: Kyle J. Davis <kyledvs@amazon.com> --------- Signed-off-by: Kyle J. Davis <kyledvs@amazon.com> * update code owners file (#23) Add kyle to the code owners file Signed-off-by: Kyle J. Davis <kyledvs@amazon.com> * feat: Update the about page to include a brief history of the project. (#18) * feat: Update the about page to include a brief history of the project. Signed-off-by: Pranav Ramesh <laphatize@protonmail.com> * feat: Use markdown instead of HTML & update wording of history Signed-off-by: Pranav Ramesh <laphatize@protonmail.com> --------- Signed-off-by: Pranav Ramesh <laphatize@protonmail.com> --------- Signed-off-by: Kyle J. Davis <kyledvs@amazon.com> Signed-off-by: Pranav Ramesh <laphatize@protonmail.com> Co-authored-by: Pranav Ramesh <laphatize@protonmail.com>
- Loading branch information
1 parent
d69fe32
commit 83fc441
Showing
9 changed files
with
51 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @AMoo-Miki @madolson | ||
* @AMoo-Miki @madolson @stockholmux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ _site | |
vendor | ||
.DS_Store | ||
/_data/commands/ | ||
/_includes/commands/ | ||
/_includes/commands/ | ||
/_includes/docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../_submodules/valkey-doc/docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: default | ||
--- | ||
{%- assign primary_title = page.primary_title -%} | ||
{%- comment -%} | ||
This template pulls in the file from `source` in the front matter. | ||
|
||
It detects if the script starts with front matter (delimited by `---`) by splitting and looking for the delimiter at the start of the file. | ||
If the delimter is detected at the top of the file, it skips the the 3rd (zero based: 2) element and iterates over the remain sections. | ||
If there delmiter is not detected (no front matter) it swallows the the whole file and markdownify's it. | ||
|
||
{%- endcomment -%} | ||
{%- capture md -%}{% include {{ page.source }} %}{%- endcapture -%} | ||
{%- assign stripped_front_matter = md | split: "---" -%} | ||
{%- include page_title.html -%} | ||
<div class="width-limiter"> | ||
<main class="container"> | ||
{%- if stripped_front_matter[0].size == 0 -%} | ||
{%- for item in stripped_front_matter offset:2 -%} | ||
{{ item | markdownify }} | ||
{%- if forloop.last == false -%} | ||
<hr /> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
{%- else -%} | ||
{{ md | markdownify }} | ||
{%- endif -%} | ||
</main> | ||
</div> |
Submodule valkey-doc
updated
5 files
+129 −129 | docs/connect/cli.md | |
+43 −43 | docs/management/debugging.md | |
+66 −113 | docs/management/persistence.md | |
+49 −68 | docs/management/security/acl.md | |
+14 −20 | docs/manual/keyspace-notifications.md |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: simple | ||
primary_title: About | ||
title: About | ||
--- | ||
|
||
|
||
|
||
# History of Valkey | ||
|
||
Valkey is an open source continuation of Redis, created in March 2023 following Redis's shift to a non-open source license. This initiative was led by Madelyn Olson, a notable figure in the Redis community and a former core maintainer at AWS, along with other contributors who sought to preserve the original open source ethos of Redis. The transition garnered substantial backing from leading tech corporations including AWS, Google, Oracle, Ericsson, and Snap, with the Linux Foundation stepping in to provide a stable platform for this new direction. Amidst the landscape of Redis alternatives, Valkey stands out with strong support from cloud services providers, positioning it as a promising solution for future open source database needs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
layout: doc-import | ||
primary_title: Persistence | ||
source: "/docs/management/persistence.md" | ||
--- |