From 48497708505e44717da83b7f92eaf841cf25f8e2 Mon Sep 17 00:00:00 2001 From: indykoning <15870933+indykoning@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:05:19 +0200 Subject: [PATCH 1/2] Added docs telling you about the .env differences --- src/4.x/installation.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/4.x/installation.md b/src/4.x/installation.md index 7686d07..0542e9d 100644 --- a/src/4.x/installation.md +++ b/src/4.x/installation.md @@ -118,19 +118,17 @@ If you do not have a Magento 2 installation yet, you want to test Rapidez, or li Make sure Docker can use at least 4GB of memory! ::: +If you have no web hosting running on your laptop (or simply want to use a self-contained version of the project) consider using `.env.example.traefik` as your `.env`. +This will use [Traefik](https://traefik.io/traefik) to make [http://rapidez.localhost](http://rapidez.localhost) available without any configuration necessary. + +Otherwise opt for `.env.example.docker` for your `.env`. +This will give you the reigns, exposing the websites on the ports defined in the `.env.example.docker` +(by default, magento: [http://127.0.0.1:1234](http://127.0.0.1:1234), rapidez: [http://127.0.0.1:1235](http://127.0.0.1:1235), elasticsearch: [http://127.0.0.1:9200](http://127.0.0.1:9200)) + ```bash docker-compose up -d docker exec rapidez_magento magerun2 indexer:reindex ``` -Edit the `.env` - -```dotenv -MAGENTO_URL=http://localhost:1234 -DB_PORT=3307 -DB_DATABASE=magento -DB_USERNAME=magento -DB_PASSWORD=password -``` ## Standalone Checkout From 3899516b3bb322b8bf6c18c8955041c32807716b Mon Sep 17 00:00:00 2001 From: indykoning <15870933+indykoning@users.noreply.github.com> Date: Thu, 25 Sep 2025 13:48:35 +0200 Subject: [PATCH 2/2] Commit suggestions Co-authored-by: Jade Geels --- src/4.x/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/4.x/installation.md b/src/4.x/installation.md index 0542e9d..71c30db 100644 --- a/src/4.x/installation.md +++ b/src/4.x/installation.md @@ -122,7 +122,7 @@ If you have no web hosting running on your laptop (or simply want to use a self- This will use [Traefik](https://traefik.io/traefik) to make [http://rapidez.localhost](http://rapidez.localhost) available without any configuration necessary. Otherwise opt for `.env.example.docker` for your `.env`. -This will give you the reigns, exposing the websites on the ports defined in the `.env.example.docker` +This will give you the reins, exposing the websites on the ports defined in the `.env.example.docker` (by default, magento: [http://127.0.0.1:1234](http://127.0.0.1:1234), rapidez: [http://127.0.0.1:1235](http://127.0.0.1:1235), elasticsearch: [http://127.0.0.1:9200](http://127.0.0.1:9200)) ```bash