https://github.com/qoollo/bob-management
Management UI for Bob
https://github.com/qoollo/bob-management
Last synced: 2 months ago
JSON representation
Management UI for Bob
- Host: GitHub
- URL: https://github.com/qoollo/bob-management
- Owner: qoollo
- License: mit
- Created: 2021-07-01T17:26:44.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-03T18:00:25.000Z (over 2 years ago)
- Last Synced: 2024-04-24T11:14:12.846Z (about 2 years ago)
- Language: Rust
- Size: 653 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# bob-management
Management UI for Bob
## Commands
Build backend server:
```sh
cargo build-backend
```
Run backend server:
```sh
cargo run-backend
```
Build frontend and move it into the backend's executable directory:
```sh
cargo build-frontend
```
---
Run debug build (Backend + Frontend):
```sh
cargo run -- --default
```
---
Make release build (Backend + Frontend):
```sh
cargo build --profile=release-lto
```
To run release build with default configuration:
```sh
cargo run --profile=release-lto -- --default
```
Or you can specify configuration file:
```sh
cargo run --profile=release-lto -- --config-file config.yaml
```