Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix website deploy #1857

Merged
merged 2 commits into from
Dec 4, 2024
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/publish-to-pages.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name: publish to github pages

on:
# Trigger when there is a new commit on main branch
push:
# Trigger when there is a new commit on main branch
branches: [ main ]
# also trigger when a new release tag is added to the repo
push:
# also trigger when a new release tag is added to the repo
tags:
- "v*"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

## Documentation

For full documentation please go to [https://docs.shotover.io/](https://docs.shotover.io/shotover-blog/docs/user-guide/introduction.html)
For full documentation please go to [https://shotover.io/docs/latest](https://shotover.io/docs/latest/user-guide/introduction.html)

## Building

Shotover is supported on Linux and macOS.
To build Shotover from source please refer to [the contributing documentation](https://docs.shotover.io/shotover-blog/docs/contributing.html)
To build Shotover from source please refer to [the contributing documentation](https://shotover.io/docs/latest/dev-docs/contributing.html)

## What is Shotover?

Expand Down
8 changes: 4 additions & 4 deletions shotover-proxy/config/topology.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# For an overview of topology configuration: https://docs.shotover.io/user-guide/configuration/#topologyyaml
# For an overview of topology configuration: https://shotover.io/docs/latest/user-guide/configuration/#topologyyaml
---
# The list of sources.
sources:
# The source, change from Valkey to the source type of the database protocol you are receiving messages in.
# For a list of possible sources: https://docs.shotover.io/sources
# For a list of possible sources: https://shotover.io/docs/latest/sources
- Valkey:
name: "valkey"
listen_addr: "127.0.0.1:6379"
chain:
# A DebugPrinter transform, reports an INFO log for every message that passes through this transform.
# You should delete this transform and add as many other transforms in this chain as you need.
# For a list of possible transforms: https://docs.shotover.io/transforms/#transforms_1
# For a list of possible transforms: https://shotover.io/docs/latest/transforms/#transforms-1
- DebugPrinter

# A NullSink transform, drops all messages it receives.
# You will want to replace this with a sink transform to send the message to a database.
# For a list of possible transforms: https://docs.shotover.io/transforms/#transforms_1
# For a list of possible transforms: https://shotover.io/docs/latest/transforms/#transforms-1
- NullSink
2 changes: 1 addition & 1 deletion shotover/src/config/topology.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ foo source:
* flush_when_millis_since_last_flush

But none of them were provided.
Check https://docs.shotover.io/transforms.html#coalesce for more information.
Check https://shotover.io/docs/latest/transforms.html#coalesce for more information.
"#;

let error = run_test_topology_valkey(vec![
Expand Down
2 changes: 1 addition & 1 deletion shotover/src/transforms/coalesce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl TransformBuilder for Coalesce {
" * flush_when_millis_since_last_flush".into(),
"".into(),
" But none of them were provided.".into(),
" Check https://docs.shotover.io/transforms.html#coalesce for more information."
" Check https://shotover.io/docs/latest/transforms.html#coalesce for more information."
.into(),
]
} else {
Expand Down
Loading