From 79570530a3b3de9c5ffd09b100e39874f548d75a Mon Sep 17 00:00:00 2001 From: He4eT Date: Wed, 2 Jul 2025 22:28:50 +0200 Subject: [PATCH] Update README.md --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d2dba6..8cab56a 100644 --- a/README.md +++ b/README.md @@ -193,8 +193,17 @@ If you prefer to run the server without Docker, you can use Node.js directly. ```sh npm install --omit=dev npm run build -npm install pm2@latest -g -pm2 start nmp -- start +``` + +It is recommended to run the server using PM2: +```sh +npm install pm2@latest --global +pm2 start npm -- start +``` + +Alternatively, the application can be started directly with: +```sh +npm start ``` By default, the server will be available at `http://0.0.0.0:1337/`.