madd
madd
NNovu
Created by AzotoN1 on 6/5/2024 in #💬│support
Nuxt integration with error 500 - self hosted
can you provide github repo with minimal reproducible code
24 replies
NNovu
Created by AzotoN1 on 6/5/2024 in #💬│support
Nuxt integration with error 500 - self hosted
@AzotoN1 I don't use Vue or Nuxt but I was able to integrate notification center in my example: https://stackblitz.com/edit/nuxt-starter-xqpfkd Make sure that all notification center related stuff is executed on client-side (declare client-side plugin and wrap notification-center in client-side component) Let me know if it works
24 replies
NNovu
Created by Divin on 5/24/2024 in #💬│support
How do i get socket url from Novu?
If you are building just custom in-app notification center I would suggest to use headless library. But if you need websockets I would take a look at headless source code: https://github.com/novuhq/novu/blob/next/packages/headless/src/lib/headless.service.ts
23 replies
NNovu
Created by djain#007 on 2/23/2024 in #💬│support
Connection to redis with tls
not sure what you want to do but you can pass Redis instance to the BullMQ so it will use that connection.
6 replies
NNovu
Created by Shaun on 2/15/2024 in #💬│support
When Bulk Triggering events with a new subscriber, the subscriber is being created multiple times
I would suspect concurrency issues. In MongoDB schema for subscriber I don't see any unique indexes for subsriberId.
10 replies
NNovu
Created by nelson_arguera on 12/26/2023 in #💬│support
Failed to load resource: the server responded with a status of 401 (Unauthorized)
@nelson_arguera what OS are you using? There is problem inside MongoDB image with mapping host's directory on Mac and Windows
29 replies
NNovu
Created by Puvi on 12/26/2023 in #💬│support
JavaScript heap out of memory err
@Puvi set env variable NODE_OPTIONS='--max-old-space-size=8192' but I think 4096 should be fine too. By default its 2 GB as far as I remember. I think on Windows with Powershell it will be:
$Env:NODE_OPTIONS='--max-old-space-size=8192'
$Env:NODE_OPTIONS='--max-old-space-size=8192'
On Linux/MacOS:
export NODE_OPTIONS='--max-old-space-size=8192'
export NODE_OPTIONS='--max-old-space-size=8192'
And it will work until you will close terminal. I would suggest to save this env variable in some kind of profile file for Powershell or whatever it is on Windows. To be honest I would suggest to use WSL on Windows for Novu development - but this is my preference as experienced Novu contributor.
5 replies
NNovu
Created by N01R on 11/15/2023 in #💬│support
Pre-requisites of deploying Novu
architecture diagram
11 replies
NNovu
Created by N01R on 11/15/2023 in #💬│support
Pre-requisites of deploying Novu
11 replies
NNovu
Created by N01R on 11/15/2023 in #💬│support
Pre-requisites of deploying Novu
you can also put ws service for handling real-time stuff inside notification center
11 replies
NNovu
Created by N01R on 11/15/2023 in #💬│support
Pre-requisites of deploying Novu
there is also worker that is needed for processing events like sending email
11 replies
NNovu
Created by N01R on 11/15/2023 in #💬│support
Pre-requisites of deploying Novu
API needs Redis + MongoDB
11 replies
NNovu
Created by N01R on 11/15/2023 in #💬│support
Pre-requisites of deploying Novu
web also needs at least API to work at all
11 replies
NNovu
Created by Sudhanshu on 10/27/2023 in #💬│support
Help regarding issue #4533
but both solutions need to be consulted with core members, because for example dropdown menu may need design.
12 replies
NNovu
Created by Sudhanshu on 10/27/2023 in #💬│support
Help regarding issue #4533
I see two solutions: make dropdown menu or extend sidebar width
12 replies
NNovu
Created by Sudhanshu on 10/27/2023 in #💬│support
Help regarding issue #4533
it's very tricky to be honest
12 replies
NNovu
Created by Sudhanshu on 10/27/2023 in #💬│support
Help regarding issue #4533
No description
12 replies
NNovu
Created by Sudhanshu on 10/27/2023 in #💬│support
Help regarding issue #4533
I would create new PR as previous one was reverted
12 replies
NNovu
Created by Uzair on 10/27/2023 in #💬│support
How to add new design components after ```design-system``` directory was relocated
Don't forget to export newly added icon in index.ts in icons directory
34 replies
NNovu
Created by Uzair on 10/27/2023 in #💬│support
How to add new design components after ```design-system``` directory was relocated
cd libs/design-system
npm run build
cd libs/design-system
npm run build
34 replies