remove extra code from makefile

Signed-off-by: fbugarski <filipbugarski@gmail.com>
This commit is contained in:
fbugarski
2023-08-04 13:39:59 +02:00
parent 1a1785e1c7
commit 38cdf9405b
2 changed files with 2 additions and 14 deletions
+1 -13
View File
@@ -31,19 +31,7 @@ agent-cli: $(CLI_SOURCE)
-o ${AGENT_CLI_PATH} $(CLI_SOURCE)
install: agent-cli
sudo cp ${AGENT_CLI_PATH} /usr/local/bin
run-computation:
${AGENT_CLI_PATH} run --computation '{"name": "my-computation"}'
upload-algorithm:
${AGENT_CLI_PATH} algorithm /path/to/algorithm
upload-dataset:
${AGENT_CLI_PATH} dataset path/to/dataset.csv
retrieve-result:
${AGENT_CLI_PATH} result
cp ${AGENT_CLI_PATH} ~/.local/bin
QCOW2_PATH = ~/go/src/github.com/ultravioletrs/manager/cmd/manager/img/boot.img
+1 -1
View File
@@ -17,7 +17,7 @@ make agent-cli
To run a computation, use the following command:
```bash
./build/agent-cli run --computation '{"name": "my-computation"}'
./agent-cli run --computation '{"name": "my-computation"}'
```
#### Upload Algorithm