mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2026-05-06 08:46:58 +00:00
dd57a0a41ae43ddb71af8d088b6ab2d20fb343e6
* first pass at alert notifications * sp alerts * add all accounts alerts * fix polling timer * update style * show count and change polling to 60s * check alerts on login * Delete settings.local.json * poll for max 10 results in 30days and use last viewed * make polling interval configurable uses VITE_APP_ALERT_POLL_INTERVAL default is 60s setting to 0 will disable polling * don't sent days and start * add to .env
jambonz
A simple provisioning webapp for jambonz
OSS Developers
If you're here to contribute to the jambonz web app source code you can view our contributor readme.
Webapp deployment
Deploy to production
- Install
pm2globally on the server hosting this application. - Copy
.envto.env.local - In
.env.local, replace[ip]:[port]with the API's IP and port - Run
npm run deploy - Access the web app via port 3001
NOTE: Here is what npm run deploy does:
- Install all dependencies (
npm i) - Build the production React application (
npm run build) - Launch the app with pm2 (
pm2 start npm --name "jambonz-webapp" -- run serve)
Alternatively, you can serve the app manually (without pm2) with npm run serve.
Update production
If there is an update to this code base, you can update the code without re-deploying.
- run
git pull origin main --rebase - run
npm i - run
npm run build
With docker
You can pull the public docker image for the web app:
docker pull ghcr.io/jambonz/webapp:latest
You can run the docker image for the webapp and expose the serve port to the host:
docker run --publish=3001:3001 ghcr.io/jambonz/webapp:latest
You can build and run the docker image from the source, for example:
docker build . --tag jambonz-webapp:local
docker run --publish=3001:3001 jambonz-webapp:local
Languages
TypeScript
93.8%
SCSS
5.7%
HTML
0.2%
Shell
0.2%