f2c6053
1
2
3
4
5
6
7
8
#!/bin/bash # AegisLM API Service Startup Script echo "Starting AegisLM API Service on port 8000..." # Start uvicorn server exec uvicorn backend.main:app --host 0.0.0.0 --port 8000 "$@"