We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e2f4f commit f665ea8Copy full SHA for f665ea8
README.md
@@ -63,7 +63,16 @@ git pull origin main
63
64
npm run build
65
66
+# Load nvm (required for pm2 to be available)
67
+source ~/.nvm/nvm.sh
68
+
69
+# First deployment only:
70
pm2 start ecosystem.config.cjs
71
72
+# For redeployments (app already running):
73
+pm2 restart ProcessorDB-website
74
+# OR for zero-downtime reload:
75
+pm2 reload ProcessorDB-website
76
```
77
78
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
0 commit comments