Skip to content

Commit

Permalink
Merge branch 'main' into end-to-end-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored Dec 3, 2024
2 parents 348710c + af2c8c4 commit fc17887
Show file tree
Hide file tree
Showing 27 changed files with 438 additions and 359 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/publish-to-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: publish to github pages

on:
push:
branches: [ main ]

# Cancel already running jobs
concurrency:
group: publish_to_pages_${{ github.head_ref }}
cancel-in-progress: true

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

jobs:
build:
strategy:
matrix:
include:
- name: Publish website to Github Pages
runner: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.setup_pages.outputs.base_url }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Build website
run: cargo run -p website
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload pages
uses: actions/upload-pages-artifact@v3
with:
path: 'website/root'
- name: Deploy pages
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
/.project
/docs/book
/docs/mdbook_bin
/website/root
/shotover-proxy/build/packages
/some_local_file
/test-helpers/src/connection/kafka/node/node_modules
16 changes: 16 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
"custom-transforms-example",
"ec2-cargo",
"windsock-cloud-docker",
"website",
]
resolver = "2"

Expand Down
10 changes: 5 additions & 5 deletions custom-transforms-example/config/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
services:
redis-one:
image: library/redis:5.0.9
valkey-one:
image: bitnami/valkey:7.2.5-debian-12-r9
ports:
- "1111:6379"
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
environment:
ALLOW_EMPTY_PASSWORD: "yes"
VALKEY_TLS_ENABLED: "no"
6 changes: 3 additions & 3 deletions docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
- [Sources](./sources.md)
- [Transforms](./transforms.md)
- [Examples]()
- [Redis Cluster]()
- [Unaware client](./examples/redis-clustering-unaware.md)
- [Aware client](./examples/redis-clustering-aware.md)
- [Valkey Cluster]()
- [Unaware client](./examples/valkey-clustering-unaware.md)
- [Aware client](./examples/valkey-clustering-aware.md)
- [Cassandra Cluster]()
- [Shotover sidecars](./examples/cassandra-cluster-shotover-sidecar.md)
- [Contributing](./dev-docs/contributing.md)
Expand Down
123 changes: 0 additions & 123 deletions docs/src/examples/redis-clustering-aware.md

This file was deleted.

Loading

0 comments on commit fc17887

Please sign in to comment.