entrypoint.sh 227 B

12345
  1. # Example content
  2. echo "Starting the application..."
  3. exec "$@"
  4. gunicorn -w 1 -b 0.0.0.0:5000 --timeout 7200 --log-level 'debug' --access-logfile - --access-logformat '%(h)s - - [%(t)s] "%(r)s" %(s)s %(b)s %(L)s' app:create_app