From 450219fcf02aefa091b7437e2bcfcb7d05d996a3 Mon Sep 17 00:00:00 2001 From: mb Date: Wed, 17 Feb 2021 11:53:19 +0100 Subject: [PATCH] adding activate to the makefile (untested still) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 58c155b..722003c 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,9 @@ setup: @python3 -m venv .venv && \ .venv/bin/pip install -r requirements.txt +activate: + @source ./venv/bin/activate + run: @python3 start.py