Files
wordlinator/serve.sh
2022-06-03 08:49:09 -05:00

8 lines
135 B
Bash
Executable File

#!/bin/bash
RELOAD=""
if $DEBUG; then
RELOAD="--reload"
fi
poetry run gunicorn $RELOAD -b "0.0.0.0:8050" "wordlinator.web:server"