40 lines
520 B
Markdown
40 lines
520 B
Markdown
|
|
# runner-rs (amd64/linux)
|
|

|
|
in-container integrating util to handle processes runtime
|
|
|
|
|
|
## Depends on
|
|
- `rustup (>=1.27.1)`
|
|
|
|
## Local init
|
|
|
|
1. Clone this repo `runner-rs`
|
|
|
|
~~~bash
|
|
git clone https://link-to-project
|
|
~~~
|
|
|
|
2. Enter project's dir
|
|
|
|
~~~bash
|
|
cd runner-rs/
|
|
~~~
|
|
|
|
|
|
3. Release build of app
|
|
|
|
~~~bash
|
|
cargo build --release
|
|
~~~
|
|
|
|
4. Execution
|
|
~~~bash
|
|
./target/release/runner-rs
|
|
~~~
|
|
or
|
|
~~~bash
|
|
cargo run --release
|
|
~~~
|
|
|