a7adf55 7c7fd7c a7adf55
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh echo "Starting in APP_MODE: $APP_MODE" if [ "$APP_MODE" = "lambda" ]; then echo "Starting in Lambda mode..." exec python -m awslambdaric "$@" else echo "Starting in Gradio mode..." exec python app.py "$@" fi