Replies: 1 comment
-
|
Hey! Deploying this on a remote server (like an Ubuntu VPS) is actually pretty straightforward. Since the web version is essentially a React/Vite app, you just need to build the static files and serve them.
git clone https://github.com/koala73/worldmonitor.git
The Config: Copy the environment template so the app can read your API keys. The Customization: If you want to tweak the UI, change default widgets, or edit the theme, modify the code inside the /src folder before moving to the next step.
npm run build
Install pm2 and serve globallynpm install -g pm2 serve Start the server on port 3000 (or whichever port you prefer)pm2 start "serve -s dist -l 3000" --name "worldmonitor" Save the pm2 process so it restarts if your server rebootspm2 save Next Steps for Public Access: Let me know if you hit any snags during the build process! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, is there anyone here who can help us to install it on a remote server and customize it?
Beta Was this translation helpful? Give feedback.
All reactions