You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mostly it happens if you did not set up the MongoDB and Redis.
Solution 1:
Just run npm run start and Jarvis CLI will guide you through the process.
Solution 2:
Setup Docker Manually.
Download and Install Docker and keep the Docker application running in the background.
Open 4 terminals.
First terminal, run these command cd docker/local/development and docker-compose up
Now run these 3 commands individually in remaining terminals, npm run start:web , npm run start:api and npm run start:worker
2. Local Host Server Not Starting ?
If you are getting this type of error:
Solution:
You have to run this command $Env:NODE_OPTIONS='--max-old-space-size=8192'.
It may be possible you get this error multiple times so whenever it happens just use the above command.
3. pnpm Version is Incompatible with local version ?
When there is a discrepancy between your local package version and the project's designated version, it necessitates the installation of the precise package version aligned with the project's specifications.
I personally install pnpm using npm with the help of this command npm run pnpm@[version_number].
In case you installed the wrong version of pnpm, then you may need to uninstall and install again.
Reference for uninstallation process -> Uninstalling pnpm
The text was updated successfully, but these errors were encountered:
How to Setup Novu for the First Time?
Refer to this Run Novu in Local Machine.
1. Unable to Login ( Network Error ) ?
Mostly it happens if you did not set up the MongoDB and Redis.
Solution 1:
Just run
npm run start
and Jarvis CLI will guide you through the process.Solution 2:
Setup Docker Manually.
cd docker/local/development
anddocker-compose up
npm run start:web
,npm run start:api
andnpm run start:worker
2. Local Host Server Not Starting ?
If you are getting this type of error:
Solution:
You have to run this command
$Env:NODE_OPTIONS='--max-old-space-size=8192'
.It may be possible you get this error multiple times so whenever it happens just use the above command.
3. pnpm Version is Incompatible with local version ?
When there is a discrepancy between your local package version and the project's designated version, it necessitates the installation of the precise package version aligned with the project's specifications.
Screenshot of the issue:
Solution:
Refer to this link to install pnpm -> Installing pnpm.
I personally install pnpm using npm with the help of this command
npm run pnpm@[version_number]
.In case you installed the wrong version of pnpm, then you may need to uninstall and install again.
Reference for uninstallation process -> Uninstalling pnpm
The text was updated successfully, but these errors were encountered: