n8n Manager Bundle for Pimcore
add environment variables:
# .env file
N8N_API_KEY=your-api-key
N8N_HOST=host-incl-port-if-necessary
N8N_WEBHOOK_KEY=custom-webhook-keyThe webhook key is used to authenticate the webhook calls from n8n. This Bundle uses the Key for "Header Auth" in n8n and send it as "X-Api-Key" header to n8n.
add bundle in bundles.php
return [
...
\Pimcorecasts\Bundle\N8nManager\N8nManagerBundle::class => ['all' => true],
...
];Start Vite continues build while developing
npm run build --watchDo not forget ro commit the dist folder after building the frontend.