Skip to content

Commit 3ecce06

Browse files
committed
Renamed ValKey service back to Redis.
1 parent 82df6e4 commit 3ecce06

92 files changed

Lines changed: 523 additions & 532 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.ahoy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,11 @@ commands:
104104
usage: Run Drush commands in the CLI service container.
105105
cmd: ahoy cli "vendor/bin/drush -l \${VORTEX_LOCALDEV_URL} $*"
106106

107-
#;< SERVICE_VALKEY
108-
flush-valkey:
109-
aliases: [flush-redis]
110-
usage: Flush Valkey cache.
111-
cmd: docker compose exec valkey valkey-cli flushall
112-
#;> SERVICE_VALKEY
107+
#;< SERVICE_REDIS
108+
flush-redis:
109+
usage: Flush Redis cache.
110+
cmd: docker compose exec redis redis-cli flushall
111+
#;> SERVICE_REDIS
113112

114113
# ----------------------------------------------------------------------------
115114
# Application commands.

.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ DRUPAL_STAGE_FILE_PROXY_ORIGIN=https://www.your-site-domain.example
7272
# Shield message.
7373
DRUPAL_SHIELD_PRINT="Restricted access."
7474

75-
#;< SERVICE_VALKEY
76-
# Enable Redis/Valkey integration.
75+
#;< SERVICE_REDIS
76+
# Enable Redis integration.
7777
# See settings.redis.php for details.
7878
DRUPAL_REDIS_ENABLED=1
79-
#;> SERVICE_VALKEY
79+
#;> SERVICE_REDIS
8080

8181
#;< SERVICE_CLAMAV
8282
# Enable ClamAV integration.

.vortex/CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ The installer uses a **baseline + diff** system for managing test fixtures:
170170
├── _baseline/ # Complete template files
171171
├── services_no_clamav/ # Diff: removes ClamAV-related content
172172
├── services_no_solr/ # Diff: removes Solr-related content
173-
├── services_no_valkey/ # Diff: removes Redis/Valkey content
173+
├── services_no_redis/ # Diff: removes Redis content
174174
├── services_none/ # Diff: removes all services
175175
├── hosting_acquia/ # Diff: Acquia-specific modifications
176176
├── hosting_lagoon/ # Diff: Lagoon-specific modifications
@@ -381,7 +381,7 @@ Content that gets removed if user doesn't select this feature
381381
382382
- `SERVICE_CLAMAV` - ClamAV virus scanning
383383
- `SERVICE_SOLR` - Solr search engine
384-
- `SERVICE_VALKEY` - Valkey/Redis caching
384+
- `SERVICE_REDIS` - Redis caching
385385
386386
**CI Providers**:
387387

.vortex/docs/content/drupal/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You would need to add more modules and themes once you finish the initial setup.
3131
| [`environment_indicator`](https://www.drupal.org/project/environment_indicator) | Adds a visual indicator for the current environment (e.g., Dev, Stage, Prod). |
3232
| [`pathauto`](https://www.drupal.org/project/pathauto) | Automatically generates URL/path aliases for content. |
3333
| [`redirect`](https://www.drupal.org/project/redirect) | Provides URL redirection management. |
34-
| [`redis`](https://www.drupal.org/project/redis) | Integrates Valkey caching backend. |
34+
| [`redis`](https://www.drupal.org/project/redis) | Integrates Redis caching backend. |
3535
| [`search_api`](https://www.drupal.org/project/search_api) | Provides a flexible framework for creating search pages. |
3636
| [`search_api_solr`](https://www.drupal.org/project/search_api_solr) | Integrates Apache Solr with Search API. |
3737
| [`shield`](https://www.drupal.org/project/shield) | Restricts access to your site by requiring a username and password. |

.vortex/docs/content/getting-started/features.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Select a feature from the tab list to view details in the content panel.
4949
- [Shield](https://www.drupal.org/project/shield) for HTTP authentication
5050
- [Stage file proxy](https://www.drupal.org/project/stage_file_proxy) for development efficiency
5151
- Configuration for [Search API](https://www.drupal.org/project/search_api) ([Solr](https://www.drupal.org/project/search_api_solr))
52-
- Configuration for caching ([Valkey](https://www.drupal.org/project/redis))
52+
- Configuration for caching ([Redis](https://www.drupal.org/project/redis))
5353
- Configuration for antivirus ([ClamAV](https://www.drupal.org/project/clamav))
5454

5555
</VerticalTabPanel>
@@ -132,7 +132,7 @@ Select a feature from the tab list to view details in the content panel.
132132

133133
- [Docker Compose](https://docs.docker.com/compose/) for service orchestration
134134
- [Ahoy](https://github.com/ahoy-cli/ahoy) for simplified command management and custom command support
135-
- Pre-configured services stack: Nginx, PHP, MariaDB, Valkey, Solr, ClamAV, Chrome
135+
- Pre-configured services stack: Nginx, PHP, MariaDB, Redis, Solr, ClamAV, Chrome
136136
- Xdebug support for debugging PHP applications
137137
- PCOV support for code coverage analysis
138138

.vortex/docs/content/tools/docker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Vortex:
211211
- `database` - a container that runs a database server. This container is used to
212212
store the application data. It can be accessed from the host via a randomly
213213
assigned port - run `docker compose port database 3306` to get the port number.
214-
- `valkey` - an optional container that runs a Valkey server. This container is
214+
- `redis` - an optional container that runs a Redis server. This container is
215215
used to store the application cache.
216216
- `solr` - an optional container that runs a Solr server. This container is used
217217
to store the application search index. It can be accessed from the host via a

.vortex/docs/content/workflows/variables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Defined in: `docker-compose.yml`
224224

225225
### `DRUPAL_REDIS_ENABLED`
226226

227-
Enable Redis/Valkey integration.<br/>See settings.redis.php for details.
227+
Enable Redis integration.<br/>See settings.redis.php for details.
228228

229229
Default value: `1`
230230

.vortex/docs/cspell.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"words": [
1010
"Asciinema",
1111
"Diffy",
12-
"VALKEY",
12+
"REDIS",
1313
"acquia",
1414
"amazee",
1515
"amazeeio",
@@ -59,7 +59,7 @@
5959
"standardise",
6060
"updatedb",
6161
"utilising",
62-
"valkey",
62+
"redis",
6363
"vincentlanglet",
6464
"vlucas",
6565
"vortextemplate",

.vortex/docs/src/pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ import { Card, CardGrid } from '../components/Card';
8181
<Card
8282
icon="💻"
8383
title="Local Development"
84-
description="Containerized development environment with Docker Compose stack, Ahoy commands, Nginx, PHP, MariaDB, Solr, Valkey, ClamAV, and Xdebug support"
84+
description="Containerized development environment with Docker Compose stack, Ahoy commands, Nginx, PHP, MariaDB, Solr, Redis, ClamAV, and Xdebug support"
8585
link="/features#local-development"
8686
/>
8787
<Card

0 commit comments

Comments
 (0)