Push notifications PWA on iOS
Hi everyone!
I just have a couple of questions since I'm a bit confused regarding the iOS topic.
We have a project built with Vite/React (frontend) and NestJS (backend).
We enabled the PWA for iOS devices and we use Novu with FCM for Push Notifications.
...
Is Iframe and webcomponent deprecated?
We're experimenting with integrating Novu into our platform. We don't use react so we were looking to use the webcomponents or iframe alternatives. However, now when I revisit the documentation it's only available under v0 and for v2 there's only React and headless modes documented.
So, my questions are:
- Is it possible and a good idea to use iframes/webcomponents in v2?
- If so, will they keep being supported?...
Need help in resolving some issues with self hosted local deployment of Novu.
Hello everyone, I'm new here, I wanted to deploy and run novu locally and I followed the self host guide, and it some what worked I had some question and issues:
1. in this we are using Mongo DB, can we use any other DB of our choice(most likely Dynamo DB) and if yes then do we need to make a lot of changes or it can be done with minimal efforts.
2. whenever we run
npx novu@latest dev --port 4000
command it spins up Tunnel, Studio, Dashboard & Endpoint and gives us the different urls for these, I wanted to know after some time whenever I try to trigger a notification using a Nextjs frontend with some delay(like 5-10 min) after running the above command, the tunnel connection don't work i need to re-run the above command again and then it start working, can you please explain why this is happening. error that i get :
```
Error triggering notification: Unknown BridgeError: {...Issue with OneSignal Integration in Novu: Workflow Runs, but No Notifications Received
Hi guys! 🙂
I'm trying to use integration of OneSignal with Novu for push notifications, but messages are not reaching OneSignal. Novu does not return any errors, yet OneSignal does not receive the request to trigger the push notification.
I followed the official Novu guide for integrating OneSignal: https://docs.novu.co/integrations/providers/push/onesignal, configured OneSignal with APP_ID and API_KEY, and triggered a workflow in Novu that should send a push notification. The logs show that the deviceToken for the given external ID is correctly retrieved, but checking the OneSignal dashboard, no request appears.
...
Sync all workflows in Dashboard 2.0?
Hi, is there a way to sync all workflows from development to production without going through each individually in Dashboard 2.0?
ERR_REQUIRE_ESM axios error with @novu/node package
I'm using v2.0.6 of the @novu/node package in my express application and when I run the novu.trigger() command, I get the following error:
```
/Projects/dashboard/node_modules/@novu/node/build/main/lib/novu.js:1
Error [ERR_REQUIRE_ESM]: require() of ES Module /Projects/dashboard/node_modules/@novu/node/node_modules/axios/index.js not supported.
Instead change the require of index.js in null to a dynamic import() which is available in all CommonJS modules....
Novu self hosted multi tenant support
Hello, we are evaluating the usage of Novu with Self Hosted solution. At the moment I'm testing it locally by deploying the Docker image on my local docker. The problem is that I can't see the Tenants option; I also changed the env variable IS_MULTI_TENANCY_ENABLED=true , but no results. Can you please help?
NextJs | Unable to integrate in-app
I have added the code snippet to nextjs app. But still in-app in not shown as active.
Now, when I trigger notification from studio, I do not see any notification....

sendgrid templates
```typescript
export const testWorkflow = workflow(
"test-workflow",
async ({ step, payload }) => {
// First email - Welcome...
NestJs | Unable to see workflows in studio
I am following nestjs guide - https://docs.novu.co/framework/quickstart/nestjs
1. I have updated my app.module.js exactly as mentioned in docs.
2. added a new folder under src/novu/ inside which resides
workflows.ts
3. when I head to localhost:2022/studio I see page. Screenshots attached....
Template editor bug
Hey, the button component inside of a loop in the native template editor does not work.
How can I send a list of links with a semi nice looking template? The current version seems hyper limited...

Multiple "brands" sharing the same org
hey Novu team, what is the best way to have multiple "brands" sharing the same Novu org? For example, our business operates under multiple names (a specific brand for B2C, a brand for B2B, etc) so we need to be able to have notifications go out with the proper branding, from: email address, email or SMS settings, etc.
Is this possible with the current setup or would we need to sign up for multiple orgs, one for each brand?...
Unsure about how novu works
I used Novu quite some time back and I'm now reimplementing things on a different product. The flow to trigger a custom made template seems a lot more complicated and requires a lot of steps compared to the previous versions, so I want to double check that I am not missing something.
My goal is to have a layout in which I want to inject variables. variables should support looping over a list and rendering links. The default template builder does not seem to support this.
As per the onboarding I'm following the studio approach, but I don't get why the bridge endpoint needs to be ran on my api?...

Bypass Onboarding
I'm utilizing the railway self hosting option of Novu and generally have everything setup and working well.
I'm new to NOVU so still pretty confused on how everything weaves together, specifically, local environment vs. production (this very well could be because we've selected the self hosting option)...
Biggest problem right now, I can't get past the local studio onboarding, I have everything configured, a test-workflow, a tunnel that's connected, a provider, a subscriber......

Schedule a workflow?
Hi, is there a way to schedule a workflow for a later datetime with Dashboard 2.0?
Overlay2 folder growth fast
Hi! I use community docker compose file. I noticed that var/lib/docker/overlay2 folder in grows. I deleted log files. It is around 47 GB now. Is there any tips what to change in docker-compose file to prevent this fast growth?
Remove Novu Branding
I know that is possible to remove the Novu branding ("powered by Novu") from Inbox and Preferences component in paid plan, but I can't find the option to remove it on the new dashboard.
Thanks a lot!...
Trouble Connecting Novu API and Bridge in Docker
Hey guys! I'm trying to run the Novu API in one Docker container and the bridge in another, but I can't establish a connection between the services.
I'm running the Novu API with Docker Compose using the community file without any changes.
For the bridge, I created a Dockerfile and a Docker Compose configuration....

Steps failure should stop whole flow under the same
We've workflow created with following step -
1. Send email
2. Delay for a day
3. Send email (for reminder)
...