mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
In there currently as wsgi has the credstash which we don't won't to apply in non-awe environments. This will need a refactor to better handle code duplication.
8 lines
215 B
Bash
Executable File
8 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Install dependencies"
|
|
cd /home/ubuntu/notifications-admin;
|
|
export FLASK_CONFIG=/home/ubuntu/config.cfg
|
|
pip3 install -r /home/ubuntu/notifications-admin/requirements.txt
|
|
python3 wsgi.py db upgrade
|