9 lines
187 B
Bash
Executable File
9 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
mkdir -p /app/storage/csvs /app/storage/pdfs /app/storage/equipment_photos
|
|
|
|
flask db upgrade
|
|
|
|
exec python -m gunicorn --bind 0.0.0.0:5000 --workers 2 "app:create_app()"
|