Skip to content

Commit

Permalink
Install requirements first
Browse files Browse the repository at this point in the history
  • Loading branch information
pamelafox committed Apr 22, 2024
1 parent 4c2c653 commit 309dd99
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/assign_role.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,12 @@ done <<EOF
$(azd env get-values)
EOF

#!/bin/sh

echo 'Creating Python virtual environment ".venv"...'
python3 -m venv .venv

echo 'Installing dependencies from "requirements.txt" into virtual environment (in quiet mode)...'
.venv/bin/python -m pip --quiet --disable-pip-version-check install -r requirements-dev.txt

python ./scripts/assign_role.py

0 comments on commit 309dd99

Please sign in to comment.