mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-21 16:01:15 -05:00
9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
echo "Install dependencies"
|
|
|
|
cd /home/notify-app/notifications-api;
|
|
pip3 install --find-links=wheelhouse -r /home/notify-app/notifications-api/requirements.txt
|