Run Novu in local machine
Prerequisites and steps to run Novu in local machine. Learn how to set up Novu on your local environment for testing and development.
Requirements
- Node.js version v20.8.1
- MongoDB
- Redis
- (Optional) pnpm - Needed if you want to install new packages
- (Optional) localstack (required only in S3 related modules)
Need help installing the requirements? Read more here.
We recommend having at least 8GB of RAM to run Novu on a local machine as Novu has multiple services running together with external services like redis, mongodb etc.
Setup the project
After installing the required services on your machine, you can clone and set up your forked version of the project:
- Clone the repository
shell git clone https://github.com/novuhq/novu.git
- Install all dependencies
- Run the project
The npm run start
will start the Jarvis CLI tool which allows you to run the whole project with ease. If you only want to run parts of the platform, you can use the following run commands from the root project:
- start:dev - Synonym to
npm run start
- start:web - Only starts the web management platform
- start:ws - Only starts the WebSocket service for notification center updates
- start:widget - Starts the widget wrapper project that hosts the notification center inside an iframe
- start:api - Runs the API in watch mode
- start:worker - Runs the worker application in watch mode
- start:dal - Runs the Data Access Layer package in watch mode
- start:shared - Starts the watch mode for the shared client and API library
- start:node - Runs the
@novu/node
package in watch mode - start:notification-center - Runs and builds the React package for the Novu notification center
Set up your environment variables
If you have used Jarvis CLI tool from the previous step you don’t need to setup the env variables as Jarvis will do that on the first run if setup wasn’t done before.
The command npm run setup:project
creates default environment variables that are required to run Novu in a development environment. However, if you want to test certain parts of Novu or run it in production mode, you need to change some of them. These are all the available environment variables:
Running tests
After making changes, you can run the tests for the respective package using the appropriate CLI commands:
API
To run the API tests, run the following command:
The tests create a new instance of Novu and a test db and run the tests against it. The test db is removed after all tests have finished running.
Web
To run the front end tests for the web project using cypress you need to install localstack. The cypress tests perform E2E tests. To be able to perform E2E tests, you need to run the API service in the appropriate test environment.
Run the services in test env with the following commands:
Run the cypress test suite with the following command:
To open the cypress management window to debug tests, run the following commands:
Different ports used by the services
- 3000 - API
- 3002 - WebSocket Service
- 3003 - Webhook Service
- 3004 - Worker Service
- 4200 - Web Management UI
- 4701 - Iframe embed for notification center
- 4500 - Widget Service
Testing providers
To run tests against the providers’ folder, you can use the npm run test:providers
command.
Local environment setup script (beta)
As an option in our script runner Jarvis
we have made available an option to run this script that will automatically try to install all the dependencies needed to be able to run Novu locally, as the previous step of installing the project dependencies through pnpm install
. When executing it inside Jarvis
, you will need to have previously installed by yourself git
and node
, as we mentioned earlier on this page.
The script can be run on its own without any previous dependency installed, as it is prepared to execute the following tasks:
- Check the running OS in the local machine (currently only MacOSx and GNU Linuxsupported)
- Install of OS dependencies (currently only MacOSx supported) — MacOSx: It will execute the following tasks --- Will try to install or update XCode (skippable step; though XCode installs
[git](https://git-scm.com/)
that is a required dependency for later) --- Will install Rosetta for Apple CPUs --- Will set up some opinionated OS settings - Will check if
[git](https://git-scm.com/)
is installed and if not will abort the operation - Will make ZSH the default shell to be able to execute the next task
- Will (opinionatedly) install Oh My Zsh! (skippable task)
- Will (opinionatedly) install the Homebrew package manager and will set up your local environment to execute it besides adding some casks
- Will (opinionatedly) install NVM as a Node.js version manager
- Will install the required Node.js version to be able to run Novu
- Will install PNPM as a package manager, required dependency for some of the tasks inside Novu’s scripts
- Will install Docker as containerized application development tool
- Will install required databases MongoDB (Community version) and Redis through Homebrew
- Will install the AWS CLI tool (not required to run Novu; it is a core maintainer used tool)
- Will create a local development domain
local.novu.co
in your local machine - Will clone the Novu repository in your local machine (skippable step) to a selected folder
$HOME/Dev
This script has only been thoroughly tested in MacOSx. Little testing has been run in GNU Linux.
This script is not bullet-proof and some of the tasks have intertwined dependencies with each other. We have tried to make it as idempotent as possible but some loose knots will probably show because of conflicts between versions of the different dependencies. Please report to us any problem found and we will try to fix or assist though we do not have the resources to make it idempotent in every potential system and potential combinations
Was this page helpful?