2023-03-18 11:52:52 +00:00
|
|
|
cd $(dirname $0)
|
|
|
|
|
|
|
|
# install git-hooks
|
|
|
|
ln -sf ../../git-hooks/pre-commit .git/hooks/pre-commit
|
|
|
|
ln -sf ../../git-hooks/commit-msg .git/hooks/commit-msg
|
|
|
|
|
|
|
|
# create virtualenv
|
|
|
|
virtualenv -p $(which python3.10) backend/.venv
|
2023-04-01 12:40:02 +00:00
|
|
|
backend/.venv/bin/pip install tox black pytest pytest-aiohttp
|