From 4f064d032e3f0cfe741bee0c86ee0ca9aaaa36c6 Mon Sep 17 00:00:00 2001 From: Jurriaan Den Toonder <1493561+Fastjur@users.noreply.github.com> Date: Fri, 3 Jun 2022 11:17:14 +0200 Subject: [PATCH] Update README.md (#13) * Update README.md * Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e4302aa..849cf06 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +[![Train model, build containers and create a new version tag](https://github.com/Fastjur/nidhogg/actions/workflows/build.yaml/badge.svg)](https://github.com/Fastjur/nidhogg/actions/workflows/build.yaml) +[![Code Scanning - Security Analysis Action](https://github.com/Fastjur/nidhogg/actions/workflows/codeQL.yaml/badge.svg)](https://github.com/Fastjur/nidhogg/actions/workflows/codeQL.yaml) +[![Run tests](https://github.com/Fastjur/nidhogg/actions/workflows/test.yaml/badge.svg)](https://github.com/Fastjur/nidhogg/actions/workflows/test.yaml) +[![Run mllint](https://github.com/Fastjur/nidhogg/actions/workflows/linter.yaml/badge.svg)](https://github.com/Fastjur/nidhogg/actions/workflows/linter.yaml) ## How to run locally Make sure you have installed [minikube](https://minikube.sigs.k8s.io/docs/start/), [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/), [Terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli) and [docker](https://www.docker.com/). @@ -7,9 +11,12 @@ minikube start ``` ### Building local image -Note that if you want to run your local images, you need to execute the following commands. +Note that if you want to run your local images, you need to have installed [dvc](https://dvc.org/) and execute the following commands. ``` eval $(minikube docker-env) +python3 -m venv venv # Only if you have not already created a venv directory! +source venv/bin/activate +pip install -r requirements.txt dvc repro ```