5 lines
240 B
Bash
5 lines
240 B
Bash
|
|
#!/bin/sh
|
||
|
|
# flask --app rifaserver.app apply_migrations
|
||
|
|
|
||
|
|
exec gunicorn -b :5001 rifaserver.app:app --access-logfile - --error-logfile -
|
||
|
|
# CMD ["gunicorn", "-b", ":5000", "rifaserver.app:app", "--access-logfile", "-", "--error-logfile", "-"]
|