-
Notifications
You must be signed in to change notification settings - Fork 4
AdminUI
Kempec Halk edited this page May 24, 2022
·
2 revisions
The AdminUI is part of the Deployment Server and represents the frontend for administrators.
It is used to monitor and manage connected devices and deployments. It also gives overall statistics for deployments over time and specific device type usages.
The AdminUI is by default available under localhost:3001.
- NodeJS Version >= 16.5.0
- Yarn Version >= 1.22.18
This Guide is only meant for users running the Deployment Server natively. It is not needed if it is run inside a Docker container.
- Install the dependencies using
yarn install
- Build the AdminUI by running
yarn run vite build
- Copy the compiled sources to the target public folder with
cp -r dist/* ../deployment-server/public/
- Head to localhost:3001 after running the Deployment Server