Default configuration
Flowgine relies on queues and scheduled jobs, so Redis must be available for every environment that runs workflows. Install strapi-plugin-redis, start a Redis server locally (or connect to a managed instance), and add the following configuration inside config/plugins.js.
config/plugins.js
export default () => ({
redis: {
enabled: true,
config: {
connections: {
default: {
connection: {
host: "127.0.0.1",
port: 6379,
db: 0,
maxRetriesPerRequest: null,
},
settings: {
debug: true,
},
},
},
},
},
});
Feel free to swap the host, port, or credentials when you deploy to staging or production. As long as redis stays enabled and reachable, Flowgine can process triggers, run actions, and keep workflow state in sync.