coding-assignment-iam/setup.sh
Joey Yakimowich-Payne e5efffb06a Add setup and run files
2022-09-17 07:50:29 -06:00

9 lines
161 B
Bash
Executable file

# exit when a command fails
set -e
# init venv
python3 -m venv .venv
source .venv/bin/activate
# install deps
pip install fastapi uvicorn[standard] websockets