5 lines
129 B
Bash
5 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ! [ -f venv/bin/gunicorn ]; then venv/bin/pip install gunicorn; fi
|
||
|
venv/bin/gunicorn --reload wolkje_files.app:app
|