mirror of https://github.com/jerome158/LIVETV.git
18 lines
353 B
Bash
18 lines
353 B
Bash
#!/bin/sh
|
|
|
|
for file in /iptv-api-config/*; do
|
|
filename=$(basename "$file")
|
|
target_file="$APP_WORKDIR/config/$filename"
|
|
if [ ! -e "$target_file" ]; then
|
|
cp -r "$file" "$target_file"
|
|
fi
|
|
done
|
|
|
|
. /.venv/bin/activate
|
|
|
|
nginx -g 'daemon off;' &
|
|
|
|
python $APP_WORKDIR/main.py &
|
|
|
|
python -m gunicorn service.app:app -b 0.0.0.0:$APP_PORT --timeout=1000
|