- Initialize
gitinside your repo:
cd wfp-survey-toolbox && git init- If you don't have
uvinstalled run:
pip install uv- Initialize uv and install
pre-commithooks:
uv venv
make pre-commit-install- Run the codestyle:
make check-codestyle- Upload initial code to GitHub:
git add .
git commit -m ":tada: Initial commit"
git branch -M main
git remote add origin https://github.com/WFP-VAM/wfp-survey-toolbox.git
git push -u origin main