https://github.com/rezwanahmedsami/servopanel
This is a cli web server management system
https://github.com/rezwanahmedsami/servopanel
Last synced: 4 months ago
JSON representation
This is a cli web server management system
- Host: GitHub
- URL: https://github.com/rezwanahmedsami/servopanel
- Owner: rezwanahmedsami
- License: mit
- Created: 2022-10-08T11:37:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T18:45:47.000Z (about 1 year ago)
- Last Synced: 2025-01-12T14:12:37.149Z (5 months ago)
- Language: Rust
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# servopanel
This is a cli web server management system#docker commands
# Build the Docker image for debugging
```
docker build -t servopanel-debug --target debug .
```# Run the debug version inside the container
```
docker run servopanel-debug
```# Build the Docker image for running tests
```
docker build -t servopanel-test --target test .
```# Run the tests inside the container
```
docker run servopanel-test
```