* docs: migrate ui docs to docs universe * created yarn workspace * added eslint and tsconfig configurations * fix eslint configurations * fixed eslint configurations * shared tailwind configurations * added shared ui package * added more shared components * migrating more components * made details components shared * move InlineCode component * moved InputText * moved Loading component * Moved Modal component * moved Select components * Moved Tooltip component * moved Search components * moved ColorMode provider * Moved Notification components and providers * used icons package * use UI colors in api-reference * moved Navbar component * used Navbar and Search in UI docs * added Feedback to UI docs * general enhancements * fix color mode * added copy colors file from ui-preset * added features and enhancements to UI docs * move Sidebar component and provider * general fixes and preparations for deployment * update docusaurus version * adjusted versions * fix output directory * remove rootDirectory property * fix yarn.lock * moved code component * added vale for all docs MD and MDX * fix tests * fix vale error * fix deployment errors * change ignore commands * add output directory * fix docs test * general fixes * content fixes * fix announcement script * added changeset * fix vale checks * added nofilter option * fix vale error
40 lines
1.2 KiB
Markdown
40 lines
1.2 KiB
Markdown
---
|
|
title: 'Redis not emitting events'
|
|
---
|
|
|
|
:::note
|
|
|
|
This troubleshooting guide only applies to Medusa backends using versions before v1.8 of the core Medusa package.
|
|
|
|
:::
|
|
|
|
When you create a new Medusa backend, Redis is disabled by default. Instead, a fake Redis backend is used that allows you to start your project but does not actually emit any events.
|
|
|
|
To enable a real Redis backend, you need to install Redis on your machine and configure it with Medusa.
|
|
|
|
You can learn how to [install Redis in the Set Up your Development Environment documentation](../development/backend/prepare-environment.mdx#redis).
|
|
|
|
After installing it, make sure to configure your Medusa backend to use Redis:
|
|
|
|
```jsx title=medusa-config.js
|
|
module.exports = {
|
|
projectConfig: {
|
|
// ...
|
|
redis_url: REDIS_URL,
|
|
},
|
|
}
|
|
```
|
|
|
|
By default, Medusa connects to Redis over the URL `redis://localhost:6379`. If you need to change that URL, set the following environment variable:
|
|
|
|
```bash
|
|
REDIS_URL=<YOUR_REDIS_URL>
|
|
```
|
|
|
|
---
|
|
|
|
## See Also
|
|
|
|
- [Set up your development environment](../development/backend/prepare-environment.mdx)
|
|
- [Configure the Medusa backend](../development/backend/configurations.md)
|