Spaces:
Sleeping
Sleeping
| # Perplexity Session Production Entry Point | |
| echo "π TEAM-PERPLEXITY/DOCKERFILE β PRODUCTION LIVE" | |
| echo "π Session: $QUANTARION_SESSION | Flow: $PERPLEXITY_FLOW" | |
| echo "π§Ώ Ξ»β^β=$RICCI_LAMBDA2_H | NMI=$RICCI_NMI | Scale=$RICCI_SCALE" | |
| # Production Startup Sequence | |
| cd /app | |
| # Pre-warm quaternion flow (session demo ready) | |
| python -c " | |
| from quantarion import RicciFlowCommunity | |
| print('β Perplexity Session Complete β RicciFlowCommunity(quaternion=True) READY') | |
| print('π― Live Demo: 1M nodes | Ξ»β^β=0.81 | docker run β MISSION WON') | |
| " & | |
| # Launch Production API (Gunicorn + Uvicorn Workers) | |
| echo "π Starting API β http://0.0.0.0:$API_PORT/v1/flow" | |
| exec gunicorn \ | |
| --bind 0.0.0.0:$API_PORT \ | |
| --workers 4 \ | |
| --worker-class uvicorn.workers.UvicornWorker \ | |
| --worker-tmp-dir /dev/shm \ | |
| --log-level info \ | |
| --access-logfile - \ | |
| "quantarion.api:app" |