File size: 414 Bytes
b2be963
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
echo "=== VortexCommerce Backend Starting ==="
echo "Python version: $(python --version)"
echo "Working directory: $(pwd)"
echo "User: $(whoami) (UID: $(id -u))"
echo "Checking write permissions..."
touch /app/test_write && echo "Write OK: /app is writable" && rm /app/test_write || echo "FAIL: /app is NOT writable"
echo "=== Starting uvicorn ==="
exec uvicorn app.main:app --host 0.0.0.0 --port 7860