diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7f969619..a9b9aff7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -9,7 +9,7 @@ on: env: REGISTRY: docker.io - IMAGE_NAME: joshrotenberg/redisctl + IMAGE_NAME: redis-developer/redisctl jobs: docker: @@ -102,6 +102,6 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: joshrotenberg/redisctl + repository: redis-developer/redisctl readme-filepath: ./README.md short-description: "Unified CLI for Redis Cloud and Redis Enterprise management" diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 40f36bfc..eea6d526 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -104,8 +104,8 @@ jobs: --exclude-path target --exclude-path node_modules --exclude-path .git - --exclude "https://github.com/joshrotenberg/redisctl/pull/.*" - --exclude "https://github.com/joshrotenberg/redisctl/issues/.*" + --exclude "https://github.com/redis-developer/redisctl/pull/.*" + --exclude "https://github.com/redis-developer/redisctl/issues/.*" . continue-on-error: true # Don't fail CI for broken external links diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3164f6e1..1449472b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ Please be respectful and constructive in all interactions. ### Finding Good First Issues -New to the project? Look for issues labeled [`good first issue`](https://github.com/joshrotenberg/redisctl/labels/good%20first%20issue). +New to the project? Look for issues labeled [`good first issue`](https://github.com/redis-developer/redisctl/labels/good%20first%20issue). These issues are: - Well-defined with clear acceptance criteria @@ -180,8 +180,8 @@ We use a manual release workflow with semantic versioning: ## Getting Help -- Open a [Discussion](https://github.com/joshrotenberg/redisctl/discussions) for questions -- Check existing [Issues](https://github.com/joshrotenberg/redisctl/issues) +- Open a [Discussion](https://github.com/redis-developer/redisctl/discussions) for questions +- Check existing [Issues](https://github.com/redis-developer/redisctl/issues) - Review [Documentation](https://docs.rs/redisctl) ## Recognition diff --git a/Cargo.toml b/Cargo.toml index a47ba7dc..6bd4e522 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,8 +23,8 @@ edition = "2024" rust-version = "1.89" authors = ["Josh Rotenberg "] license = "MIT OR Apache-2.0" -repository = "https://github.com/joshrotenberg/redisctl" -homepage = "https://github.com/joshrotenberg/redisctl" +repository = "https://github.com/redis-developer/redisctl" +homepage = "https://github.com/redis-developer/redisctl" documentation = "https://docs.rs/redisctl" # Config for 'dist' diff --git a/README.md b/README.md index 502fd6e7..562f3b31 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ [![Crates.io](https://img.shields.io/crates/v/redisctl.svg)](https://crates.io/crates/redisctl) [![Documentation](https://docs.rs/redisctl/badge.svg)](https://docs.rs/redisctl) -[![CI](https://github.com/joshrotenberg/redisctl/actions/workflows/ci.yml/badge.svg)](https://github.com/joshrotenberg/redisctl/actions/workflows/ci.yml) -[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/joshrotenberg/redisctl#license) +[![CI](https://github.com/redis-developer/redisctl/actions/workflows/ci.yml/badge.svg)](https://github.com/redis-developer/redisctl/actions/workflows/ci.yml) +[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/redis-developer/redisctl#license) ```bash # Create a Redis Cloud subscription with one command @@ -47,7 +47,7 @@ brew install joshrotenberg/brew/redisctl cargo install redisctl # Or download from releases -# https://github.com/joshrotenberg/redisctl/releases +# https://github.com/redis-developer/redisctl/releases ``` ### 2. Configure @@ -277,7 +277,7 @@ cargo install redisctl --features secure-storage ``` ### Binary Releases -Download the latest release for your platform from [GitHub Releases](https://github.com/joshrotenberg/redisctl/releases). +Download the latest release for your platform from [GitHub Releases](https://github.com/redis-developer/redisctl/releases). Binaries are available for: - macOS (Intel and Apple Silicon) @@ -290,13 +290,13 @@ Binaries are available for: docker run --rm \ -e REDIS_CLOUD_API_KEY \ -e REDIS_CLOUD_SECRET_KEY \ - joshrotenberg/redisctl:latest \ + redis-developer/redisctl:latest \ cloud subscription list # Mount config for persistent profiles docker run --rm \ -v ~/.config/redisctl:/root/.config/redisctl:ro \ - joshrotenberg/redisctl:latest \ + redis-developer/redisctl:latest \ cloud database list # Development environment @@ -437,7 +437,7 @@ Contributions welcome! See our [Contributing Guide](https://joshrotenberg.github ```bash # Clone and build -git clone https://github.com/joshrotenberg/redisctl.git +git clone https://github.com/redis-developer/redisctl.git cd redisctl cargo build --release @@ -464,5 +464,5 @@ at your option. ## Support - [Documentation](https://joshrotenberg.github.io/redisctl/) -- [Issue Tracker](https://github.com/joshrotenberg/redisctl/issues) -- [Discussions](https://github.com/joshrotenberg/redisctl/discussions) +- [Issue Tracker](https://github.com/redis-developer/redisctl/issues) +- [Discussions](https://github.com/redis-developer/redisctl/discussions) diff --git a/RELEASE.md b/RELEASE.md index a9431f04..66361fce 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -55,15 +55,15 @@ git push origin vX.Y.Z The tag push should automatically trigger: -1. **Release workflow** (cargo-dist): https://github.com/joshrotenberg/redisctl/actions/workflows/release.yml +1. **Release workflow** (cargo-dist): https://github.com/redis-developer/redisctl/actions/workflows/release.yml - Creates GitHub release with binaries - Takes ~10-15 minutes -2. **Docker Build**: https://github.com/joshrotenberg/redisctl/actions/workflows/docker.yml +2. **Docker Build**: https://github.com/redis-developer/redisctl/actions/workflows/docker.yml - Publishes to Docker Hub - Takes ~5-10 minutes -3. **Publish to crates.io**: https://github.com/joshrotenberg/redisctl/actions/workflows/publish-crates.yml +3. **Publish to crates.io**: https://github.com/redis-developer/redisctl/actions/workflows/publish-crates.yml - Publishes all three crates - Takes ~2-5 minutes @@ -71,9 +71,9 @@ The tag push should automatically trigger: After workflows complete, verify: -- [ ] GitHub Release: https://github.com/joshrotenberg/redisctl/releases +- [ ] GitHub Release: https://github.com/redis-developer/redisctl/releases - Should have binaries for all platforms -- [ ] Docker Hub: https://hub.docker.com/r/joshrotenberg/redisctl/tags +- [ ] Docker Hub: https://hub.docker.com/r/redis-developer/redisctl/tags - Should have new version tag - [ ] crates.io: https://crates.io/crates/redisctl - Should show new version diff --git a/crates/redisctl-config/Cargo.toml b/crates/redisctl-config/Cargo.toml index c9893c6d..3f368589 100644 --- a/crates/redisctl-config/Cargo.toml +++ b/crates/redisctl-config/Cargo.toml @@ -4,8 +4,8 @@ version = "0.2.0" edition = "2024" authors = ["Josh Rotenberg "] license = "MIT OR Apache-2.0" -repository = "https://github.com/joshrotenberg/redisctl" -homepage = "https://github.com/joshrotenberg/redisctl" +repository = "https://github.com/redis-developer/redisctl" +homepage = "https://github.com/redis-developer/redisctl" description = "Configuration and profile management for Redis CLI tools" keywords = ["redis", "config", "profile", "credentials"] categories = ["config", "authentication"] diff --git a/crates/redisctl/src/lib.rs b/crates/redisctl/src/lib.rs index f4298d69..8d522747 100644 --- a/crates/redisctl/src/lib.rs +++ b/crates/redisctl/src/lib.rs @@ -78,7 +78,7 @@ //! //! ## Documentation //! -//! For complete documentation and examples, see the [GitHub repository](https://github.com/joshrotenberg/redisctl). +//! For complete documentation and examples, see the [GitHub repository](https://github.com/redis-developer/redisctl). // Internal modules for CLI functionality pub(crate) mod cli; diff --git a/docker-compose.yml b/docker-compose.yml index cda77c56..b235c6b7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -78,7 +78,7 @@ services: # This is a high-level workflow that replaces multiple manual API calls. # ============================================================================== redis-enterprise-init: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-init depends_on: redis-enterprise: @@ -116,7 +116,7 @@ services: # Create first test database - basic ephemeral cache # Configuration: 100MB, no persistence, LRU eviction policy redis-enterprise-create-db1: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-create-db1 depends_on: redis-enterprise-init: @@ -137,7 +137,7 @@ services: # Create second test database - persistent with AOF # Configuration: 200MB, AOF persistence, appendfsync-every-sec redis-enterprise-create-db2: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-create-db2 depends_on: redis-enterprise-init: @@ -167,7 +167,7 @@ services: # List all databases to verify creation # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-list-dbs: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-list-dbs depends_on: redis-enterprise-create-db1: @@ -188,7 +188,7 @@ services: # Get cache database details with JMESPath filtering # 👤 HUMAN-FRIENDLY COMMAND (with filtering) redis-enterprise-get-cache-db: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-get-cache-db depends_on: redis-enterprise-create-db1: @@ -211,7 +211,7 @@ services: # Get persistent database details # 👤 HUMAN-FRIENDLY COMMAND (with filtering) redis-enterprise-get-persistent-db: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-get-persistent-db depends_on: redis-enterprise-create-db2: @@ -243,7 +243,7 @@ services: # Output: Basic cluster details (filtered for key fields) # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-cluster-info: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-cluster-info depends_on: redis-enterprise-list-dbs: @@ -262,7 +262,7 @@ services: # List nodes in the cluster # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-list-nodes: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-list-nodes depends_on: redis-enterprise-cluster-info: @@ -281,7 +281,7 @@ services: # Check cluster stats # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-stats: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-stats depends_on: redis-enterprise-list-nodes: @@ -308,7 +308,7 @@ services: # Get license information # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-license: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-license depends_on: redis-enterprise-stats: @@ -330,7 +330,7 @@ services: # Get detailed node information # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-node-details: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-node-details depends_on: redis-enterprise-license: @@ -349,7 +349,7 @@ services: # List all users # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-users: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-users depends_on: redis-enterprise-node-details: @@ -368,7 +368,7 @@ services: # Get cluster policy # 🔧 RAW API COMMAND redis-enterprise-policy: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-policy depends_on: redis-enterprise-users: @@ -387,7 +387,7 @@ services: # Check for any cluster alerts # 🔧 RAW API COMMAND redis-enterprise-alerts: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-alerts depends_on: redis-enterprise-policy: @@ -406,7 +406,7 @@ services: # Get comprehensive cluster information # 👤 HUMAN-FRIENDLY COMMAND redis-enterprise-cluster-full: - image: joshrotenberg/redisctl:latest + image: redis-developer/redisctl:latest container_name: redis-enterprise-cluster-full depends_on: redis-enterprise-alerts: diff --git a/docs/book.toml b/docs/book.toml index a818f3fb..552cb69d 100644 --- a/docs/book.toml +++ b/docs/book.toml @@ -7,8 +7,8 @@ title = "redisctl Documentation" [output.html] default-theme = "light" preferred-dark-theme = "ayu" -git-repository-url = "https://github.com/joshrotenberg/redisctl" -edit-url-template = "https://github.com/joshrotenberg/redisctl/edit/main/docs/{path}" +git-repository-url = "https://github.com/redis-developer/redisctl" +edit-url-template = "https://github.com/redis-developer/redisctl/edit/main/docs/{path}" [output.html.fold] enable = true diff --git a/docs/src/developer/contributing.md b/docs/src/developer/contributing.md index cad18443..3de71496 100644 --- a/docs/src/developer/contributing.md +++ b/docs/src/developer/contributing.md @@ -6,7 +6,7 @@ Guidelines for contributing to redisctl. ```bash # Clone repository -git clone https://github.com/joshrotenberg/redisctl.git +git clone https://github.com/redis-developer/redisctl.git cd redisctl # Build @@ -84,4 +84,4 @@ cargo test --package redis-enterprise ## Questions? -Open an issue at [github.com/joshrotenberg/redisctl/issues](https://github.com/joshrotenberg/redisctl/issues) +Open an issue at [github.com/redis-developer/redisctl/issues](https://github.com/redis-developer/redisctl/issues) diff --git a/docs/src/enterprise/operations/support-package.md b/docs/src/enterprise/operations/support-package.md index 850bbf7e..fecb58eb 100644 --- a/docs/src/enterprise/operations/support-package.md +++ b/docs/src/enterprise/operations/support-package.md @@ -583,7 +583,7 @@ jobs: - name: Install redisctl run: | - curl -L https://github.com/joshrotenberg/redisctl/releases/latest/download/redisctl-linux-amd64.tar.gz | tar xz + curl -L https://github.com/redis-developer/redisctl/releases/latest/download/redisctl-linux-amd64.tar.gz | tar xz sudo mv redisctl /usr/local/bin/ - name: Configure Redis Enterprise credentials diff --git a/docs/src/getting-started/docker.md b/docs/src/getting-started/docker.md index 91cca6c7..ec07e834 100644 --- a/docs/src/getting-started/docker.md +++ b/docs/src/getting-started/docker.md @@ -92,7 +92,7 @@ docker run --rm -it \ -e REDIS_ENTERPRISE_INSECURE="true" \ -e REDIS_ENTERPRISE_USER="admin@redis.local" \ -e REDIS_ENTERPRISE_PASSWORD="Redis123!" \ - joshrotenberg/redisctl:latest \ + redis-developer/redisctl:latest \ /bin/sh # Inside the container, run commands diff --git a/docs/src/getting-started/installation.md b/docs/src/getting-started/installation.md index 70ccde9b..e74a711e 100644 --- a/docs/src/getting-started/installation.md +++ b/docs/src/getting-started/installation.md @@ -6,13 +6,13 @@ The quickest way to try redisctl with no installation: ```bash # Run commands directly -docker run --rm joshrotenberg/redisctl --help +docker run --rm redis-developer/redisctl --help # With environment variables docker run --rm \ -e REDIS_CLOUD_API_KEY="your-key" \ -e REDIS_CLOUD_SECRET_KEY="your-secret" \ - joshrotenberg/redisctl cloud database list + redis-developer/redisctl cloud database list ``` ## Homebrew (macOS/Linux) @@ -40,12 +40,12 @@ brew upgrade redisctl ## Binary Releases -Download the latest release for your platform from the [GitHub releases page](https://github.com/joshrotenberg/redisctl/releases). +Download the latest release for your platform from the [GitHub releases page](https://github.com/redis-developer/redisctl/releases). ### Linux/macOS ```bash # Download the binary (replace VERSION and PLATFORM) -curl -L https://github.com/joshrotenberg/redisctl/releases/download/vVERSION/redisctl-PLATFORM.tar.gz | tar xz +curl -L https://github.com/redis-developer/redisctl/releases/download/vVERSION/redisctl-PLATFORM.tar.gz | tar xz # Move to PATH sudo mv redisctl /usr/local/bin/ @@ -80,7 +80,7 @@ cargo install redisctl --features secure-storage ## From Source ```bash -git clone https://github.com/joshrotenberg/redisctl.git +git clone https://github.com/redis-developer/redisctl.git cd redisctl # Basic installation diff --git a/docs/src/getting-started/quickstart.md b/docs/src/getting-started/quickstart.md index ca88592f..a76c340d 100644 --- a/docs/src/getting-started/quickstart.md +++ b/docs/src/getting-started/quickstart.md @@ -15,7 +15,7 @@ export REDIS_CLOUD_SECRET_KEY="your-secret-key" docker run --rm \ -e REDIS_CLOUD_API_KEY \ -e REDIS_CLOUD_SECRET_KEY \ - joshrotenberg/redisctl cloud subscription list + redis-developer/redisctl cloud subscription list ``` ### Redis Enterprise @@ -33,7 +33,7 @@ docker run --rm \ -e REDIS_ENTERPRISE_USER \ -e REDIS_ENTERPRISE_PASSWORD \ -e REDIS_ENTERPRISE_INSECURE \ - joshrotenberg/redisctl enterprise cluster get + redis-developer/redisctl enterprise cluster get ``` That's it! You just ran your first redisctl command. diff --git a/docs/src/introduction.md b/docs/src/introduction.md index a12795b7..f56e32c8 100644 --- a/docs/src/introduction.md +++ b/docs/src/introduction.md @@ -34,7 +34,7 @@ redisctl cloud database create --subscription $SUB --name mydb --wait ```bash # Docker (quick start) -docker run ghcr.io/joshrotenberg/redisctl:latest --help +docker run ghcr.io/redis-developer/redisctl:latest --help # macOS/Linux brew install joshrotenberg/brew/redisctl @@ -64,6 +64,6 @@ This enables Terraform providers, backup tools, monitoring dashboards, and more. ## Need Help? -- [GitHub Issues](https://github.com/joshrotenberg/redisctl/issues) +- [GitHub Issues](https://github.com/redis-developer/redisctl/issues) - [API Documentation](https://docs.rs/redisctl) - [Cookbook](./cookbook/README.md) diff --git a/docs/src/presentation/slides.html b/docs/src/presentation/slides.html index fd12916b..ce175c40 100644 --- a/docs/src/presentation/slides.html +++ b/docs/src/presentation/slides.html @@ -101,7 +101,7 @@

The CLI for Redis Cloud and Enterprise

- github.com/joshrotenberg/redisctl + github.com/redis-developer/redisctl

@@ -500,19 +500,19 @@

Using with Docker

No installation required

# Run any command
-docker run --rm joshrotenberg/redisctl \
+docker run --rm redis-developer/redisctl \
   cloud subscription list
 
 # With environment variables
 docker run --rm \
   -e REDIS_CLOUD_API_KEY=$KEY \
   -e REDIS_CLOUD_SECRET_KEY=$SECRET \
-  joshrotenberg/redisctl cloud database list
+  redis-developer/redisctl cloud database list
 
 # Or mount your config
 docker run --rm \
   -v ~/.config/redisctl:/root/.config/redisctl \
-  joshrotenberg/redisctl --profile prod cloud database list
+ redis-developer/redisctl --profile prod cloud database list @@ -629,10 +629,10 @@

Installation

cargo install redisctl --features secure-storage # Docker -docker run -it joshrotenberg/redisctl --help +docker run -it redis-developer/redisctl --help # From releases (Linux x86_64) -curl -L https://github.com/joshrotenberg/redisctl/releases/latest/download/redisctl-x86_64-unknown-linux-gnu.tar.gz | tar xz +curl -L https://github.com/redis-developer/redisctl/releases/latest/download/redisctl-x86_64-unknown-linux-gnu.tar.gz | tar xz ./redisctl --help @@ -649,7 +649,7 @@

Get Started

redisctl cloud subscription list redisctl cloud database list --subscription-id 123456


-

github.com/joshrotenberg/redisctl

+

github.com/redis-developer/redisctl

Docs: joshrotenberg.github.io/redisctl

diff --git a/docs/src/reference/rladmin.md b/docs/src/reference/rladmin.md index a59431fd..1d3f0b0d 100644 --- a/docs/src/reference/rladmin.md +++ b/docs/src/reference/rladmin.md @@ -100,7 +100,7 @@ redisctl enterprise support-package cluster --optimize --upload ## Full Comparison -See [RLADMIN_COMPARISON.md](https://github.com/joshrotenberg/redisctl/blob/main/examples/presentation/RLADMIN_COMPARISON.md) for detailed feature matrix with 30+ comparisons. +See [RLADMIN_COMPARISON.md](https://github.com/redis-developer/redisctl/blob/main/examples/presentation/RLADMIN_COMPARISON.md) for detailed feature matrix with 30+ comparisons. --- diff --git a/docs/src/reference/troubleshooting.md b/docs/src/reference/troubleshooting.md index 38d28d77..c85d4555 100644 --- a/docs/src/reference/troubleshooting.md +++ b/docs/src/reference/troubleshooting.md @@ -600,7 +600,7 @@ curl -k -u "admin:password" \ ``` 3. **Report issues** - - GitHub Issues: https://github.com/joshrotenberg/redisctl/issues + - GitHub Issues: https://github.com/redis-developer/redisctl/issues - Include: version, command, error message, debug output 4. **Community support** diff --git a/docs/src/tutorials/cicd.md b/docs/src/tutorials/cicd.md index 1aff3077..5e7a7d3a 100644 --- a/docs/src/tutorials/cicd.md +++ b/docs/src/tutorials/cicd.md @@ -45,7 +45,7 @@ jobs: - name: Install redisctl run: | - curl -L https://github.com/joshrotenberg/redisctl/releases/latest/download/redisctl-linux-amd64.tar.gz | tar xz + curl -L https://github.com/redis-developer/redisctl/releases/latest/download/redisctl-linux-amd64.tar.gz | tar xz sudo mv redisctl /usr/local/bin/ redisctl --version @@ -192,7 +192,7 @@ variables: REDISCTL_VERSION: "latest" before_script: - - curl -L https://github.com/joshrotenberg/redisctl/releases/${REDISCTL_VERSION}/download/redisctl-linux-amd64.tar.gz | tar xz + - curl -L https://github.com/redis-developer/redisctl/releases/${REDISCTL_VERSION}/download/redisctl-linux-amd64.tar.gz | tar xz - mv redisctl /usr/local/bin/ - redisctl profile set gitlab --deployment cloud --api-key "$REDIS_API_KEY" --api-secret "$REDIS_API_SECRET" @@ -286,7 +286,7 @@ pipeline { stage('Setup') { steps { sh ''' - curl -L https://github.com/joshrotenberg/redisctl/releases/latest/download/redisctl-linux-amd64.tar.gz | tar xz + curl -L https://github.com/redis-developer/redisctl/releases/latest/download/redisctl-linux-amd64.tar.gz | tar xz chmod +x redisctl ./redisctl profile set jenkins \ --deployment cloud \ diff --git a/docs/src/walkthrough/cloud-examples.md b/docs/src/walkthrough/cloud-examples.md index e1928bf8..f41fad36 100644 --- a/docs/src/walkthrough/cloud-examples.md +++ b/docs/src/walkthrough/cloud-examples.md @@ -13,7 +13,7 @@ export REDIS_CLOUD_SECRET_KEY="your-secret-key" alias redisctl='docker run --rm \ -e REDIS_CLOUD_API_KEY \ -e REDIS_CLOUD_SECRET_KEY \ - joshrotenberg/redisctl' + redis-developer/redisctl' ``` ## API Layer Examples diff --git a/docs/src/walkthrough/enterprise-examples.md b/docs/src/walkthrough/enterprise-examples.md index b8adc2aa..bc55f561 100644 --- a/docs/src/walkthrough/enterprise-examples.md +++ b/docs/src/walkthrough/enterprise-examples.md @@ -17,7 +17,7 @@ alias redisctl='docker run --rm \ -e REDIS_ENTERPRISE_USER \ -e REDIS_ENTERPRISE_PASSWORD \ -e REDIS_ENTERPRISE_INSECURE \ - joshrotenberg/redisctl' + redis-developer/redisctl' ``` ## API Layer Examples