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