4 lines
81 B
Bash
4 lines
81 B
Bash
|
|
#!/bin/bash
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
pip install -r requirements.txt -q
|
||
|
|
python app.py
|