8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BASE=$(dirname $0)
|
|
cd $BASE
|
|
git pull
|
|
source env/bin/activate
|
|
pip3 install -r requirements.txt
|
|
python3 app.py |