An open API service indexing awesome lists of open source software.

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

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
```