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