Files
Pygentic-AI/docker/pygentic_ai/python_start.sh
Francis Secada ad1454ff3f
Some checks failed
Bandit / bandit (push) Has been cancelled
Docker Image CI / build (3.13) (push) Has been cancelled
Production Deployment Readiness
 Local build verified successfully
 Environment variables complete  
 CI/CD workflows updated
 Build process simplified (source copy vs git clone)
 All production-readiness fixes applied

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-02 19:11:03 -05:00

11 lines
286 B
Bash
Executable File

#!/bin/bash
__dir="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
cd ${__dir}/../.. || exit
source .venv/bin/activate
cd src || exit
gunicorn app:app -w ${WORKERS} -k uvicorn.workers.UvicornWorker \
--timeout "${TIMEOUT}" \
--forwarded-allow-ips "*" \
-b 0.0.0.0:"${PORT}"