8 lines
135 B
Bash
Executable File
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"
|