added some fixes and checks

This commit is contained in:
MunyDev 2024-08-12 17:45:44 -04:00
parent 6bd6a3a265
commit a9c11eba53
No known key found for this signature in database
GPG Key ID: 7DFBB51356064F62
2 changed files with 5 additions and 0 deletions

View File

@ -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

3
enter_venv.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
source ./.venv/bin/activate
bash