From 29bb2e4f6e65ad11ac31639a90d0415655bb0133 Mon Sep 17 00:00:00 2001 From: Sujal Gurung <86787475+dinesh-58@users.noreply.github.com> Date: Thu, 21 Dec 2023 14:40:27 +0545 Subject: [PATCH] docs: rename `EVENT_REDIS_URL` (#5948) fix typo in 2 places closes medusajs/medusa#5936 --- .../docs/content/deployments/server/deploying-on-heroku.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/apps/docs/content/deployments/server/deploying-on-heroku.mdx b/www/apps/docs/content/deployments/server/deploying-on-heroku.mdx index 2c7155761a..18bddb2744 100644 --- a/www/apps/docs/content/deployments/server/deploying-on-heroku.mdx +++ b/www/apps/docs/content/deployments/server/deploying-on-heroku.mdx @@ -146,15 +146,15 @@ However, if you use another add-on, make sure to set the environment variable `D #### (Optional) Configure Modules Environment Variables -If you use in your Medusa backend modules that require setting environment variables, then you should set them at this point. +If you use modules in your Medusa backend that require setting environment variables, then you should set them at this point. For example, if you use the Redis Event Bus module: ```bash -heroku config:set EVENT_REDIS_URL= +heroku config:set EVENTS_REDIS_URL= ``` -Make sure to change `EVENT_REDIS_URL` to the environment variable name you use for your module's configurations. +Make sure to change `EVENTS_REDIS_URL` to the environment variable name you use for your module's configurations. If your module requires setting up other services, do that then add the environment variables.