13 lines
165 B
Bash
Executable File
13 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source ./venv/bin/activate
|
|
|
|
pip install -r ./requirements.txt
|
|
|
|
flask db update
|
|
|
|
|
|
exec gunicorn -b :5000 --access-logfile - --error-logfile - main:app
|
|
|
|
|