serverManager
IPMI server manager build for Dell 12th gen servers
File Explorer
Download Latest Version (.zip)- docker-publish.yml
- fanControl.js
- index.js
- ipmi.js
- units.js
- fanControl.test.js
- .prettierrc
- package-lock.json
- package.json
- favicon.ico
- index.html
- logo192.png
- logo512.png
- manifest.json
- robots.txt
- index.jsx
- FanCurveGraph.jsx
- InlineSlider.jsx
- Switch.jsx
- App.css
- App.jsx
- App.test.js
- index.css
- index.js
- logo.svg
- main.jsx
- .prettierrc
- index.html
- package-lock.json
- package.json
- vite.config.js
- image.png
- .dockerignore
- .gitignore
- compose-dev.yml
- compose.yml
- Dockerfile
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/Danielv123/serverManager
Downloads the entire project code from GitHub to your computer.
cd serverManager
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose up -d
Builds and starts all defined containers (server, database, etc.) at once, in the background.
docker compose -f compose-dev.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Node.js
EasyPrerequisites
cd backend
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
