From a9c11eba53df7c587beb2da37d69dee9a7140257 Mon Sep 17 00:00:00 2001 From: MunyDev Date: Mon, 12 Aug 2024 17:45:44 -0400 Subject: [PATCH] added some fixes and checks --- Makefile | 2 ++ enter_venv.sh | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 enter_venv.sh diff --git a/Makefile b/Makefile index 7d8dac0..62889c4 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ setup-venv: python3 -m venv .venv bash setup_venv.sh exit +enter-venv: + bash enter_venv.sh setup-python: mkdir -p gen/python protoc --python_out=gen/python crs.proto diff --git a/enter_venv.sh b/enter_venv.sh new file mode 100644 index 0000000..f6748ca --- /dev/null +++ b/enter_venv.sh @@ -0,0 +1,3 @@ +#!/bin/bash +source ./.venv/bin/activate +bash \ No newline at end of file