From b564d130ff8f501f5dd034eb0acc92a8f716b98d Mon Sep 17 00:00:00 2001 From: George Kaklamanos Date: Sat, 10 Jun 2023 19:29:21 +0300 Subject: [PATCH] Add justfile --- justfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 justfile diff --git a/justfile b/justfile new file mode 100755 index 0000000..04ac84b --- /dev/null +++ b/justfile @@ -0,0 +1,5 @@ +run +ARGS: + python -m venv ./venv + source ./venv/bin/activate + python -m pip install -r requirements.txt + python ./main.py {{ARGS}}