mirror of
https://github.com/serengil/deepface.git
synced 2025-06-02 09:30:06 +00:00
6 lines
241 B
Bash
6 lines
241 B
Bash
# Example content
|
|
echo "Starting the application..."
|
|
exec "$@"
|
|
|
|
gunicorn --workers=1 --timeout=7200 --bind=0.0.0.0:5000 --log-level=debug --access-logformat='%(h)s - - [%(t)s] "%(r)s" %(s)s %(b)s %(L)s' --access-logfile=- "app:create_app()"
|