We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43f8c54 commit e24b9f7Copy full SHA for e24b9f7
shell_scripts/start.sh
@@ -45,7 +45,7 @@ echo "backend:Django migrations completed."
45
46
if [ "${DEBUGPY_ENABLE:-"false"}" == "false" ]; then
47
echo "backend: Starting Gunicorn with uvicorn worker for production"
48
- CMD="gunicorn backend.asgi:application --bind 0.0.0.0:${GUNICORN_PORT} --workers=\"${GUNICORN_WORKERS}\" -k uvicorn_worker.UvicornWorker --timeout=\"${GUNICORN_TIMEOUT}\" "
+ CMD="gunicorn backend.asgi:application --bind 0.0.0.0:${GUNICORN_PORT} --workers=${GUNICORN_WORKERS} -k uvicorn_worker.UvicornWorker --timeout=${GUNICORN_TIMEOUT}"
49
else
50
echo "backend: Starting uvicorn for Development"
51
CMD="uvicorn backend.asgi:application --host=0.0.0.0 --port=${GUNICORN_PORT} --reload"
0 commit comments