mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00
10 lines
181 B
Bash
Executable File
10 lines
181 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
gpath=$(poetry run which gunicorn)
|
|
# pytest=$(poetry run which pytest)
|
|
|
|
# $pytest # -q
|
|
|
|
echo "Starting swing"
|
|
"$gpath" -b 0.0.0.0:1970 --threads=2 "manage:create_api()"
|