All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m33s
6 lines
165 B
Bash
6 lines
165 B
Bash
#!/bin/bash
|
|
if [ "$FLASK_ENV" = "production" ]; then
|
|
gunicorn --bind 0.0.0.0:3001 "ktvmanager.main:create_app()"
|
|
else
|
|
flask run --host=0.0.0.0 --port=3001
|
|
fi |