swingmusic/server/start.sh
geoffrey45 12c8406a0d add ping check
- fix artist downloader function
2022-06-20 09:49:16 +03:00

23 lines
435 B
Bash
Executable File

# ppath=$(poetry run which python)
# $ppath manage.py
#python manage.py
gpath=$(poetry run which gunicorn)
while getopts ':s' opt; do
case $opt in
s)
echo "Starting Alice server"
cd "./app"
"$gpath" -b 0.0.0.0:9877 -w 4 --threads=2 "imgserver:app" &
cd ../
;;
\?)
echo "Invalid option: -$OPTARG" >&2
;;
esac
done
"$gpath" -b 0.0.0.0:9876 -w 1 --threads=4 "manage:create_app()"