Management UI for Bob
Build backend server:
cargo build-backendRun backend server:
cargo run-backendBuild frontend and move it into the backend's executable directory:
cargo build-frontendRun debug build (Backend + Frontend):
cargo run -- --defaultMake release build (Backend + Frontend):
cargo build --profile=release-ltoTo run release build with default configuration:
cargo run --profile=release-lto -- --defaultOr you can specify configuration file:
cargo run --profile=release-lto -- --config-file config.yaml