File size: 126 Bytes
c3b1078 |
1 2 3 4 5 |
#!/bin/bash
# Start the FastAPI server with uvicorn
exec uvicorn api:app --host $HOST --port $PORT --forwarded-allow-ips '*'
|
c3b1078 |
1 2 3 4 5 |
#!/bin/bash
# Start the FastAPI server with uvicorn
exec uvicorn api:app --host $HOST --port $PORT --forwarded-allow-ips '*'
|