mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-14 09:12:06 -05:00
15 lines
397 B
Bash
Executable File
15 lines
397 B
Bash
Executable File
echo "Install dependencies"
|
|
|
|
|
|
if [ -e "/home/notify-app" ]
|
|
then
|
|
echo "Depenencies for notify-app"
|
|
cd /home/ubuntu/notifications-api;
|
|
pip3 install -r /home/notify-app/notifications-api/requirements.txt
|
|
python3 db.py db upgrade
|
|
else
|
|
echo "Depenencies for ubuntu"
|
|
cd /home/ubuntu/notifications-api;
|
|
pip3 install -r /home/ubuntu/notifications-api/requirements.txt
|
|
python3 db.py db upgrade
|
|
fi |